Note
Go to the end to download the full example code
Sediment drift from Glomma river outlet
from datetime import timedelta, datetime
from opendrift.models.sedimentdrift import SedimentDrift
o = SedimentDrift(loglevel=0) # 0 for debug output
14:06:20 DEBUG opendrift.models.basemodel:625: Adding 18 config items from basemodel
14:06:20 DEBUG opendrift.models.basemodel:625: Adding 6 config items from basemodel
14:06:20 DEBUG opendrift.models.basemodel:625: Adding 26 config items from basemodel
14:06:21 INFO opendrift.models.basemodel:539: OpenDriftSimulation initialised (version 1.10.7 / v1.10.6-119-g1da5bec)
14:06:21 DEBUG opendrift.models.basemodel:625: Adding 15 config items from oceandrift
14:06:21 DEBUG opendrift.models.basemodel:637: Overwriting config item seed:z
14:06:21 DEBUG opendrift.models.basemodel:625: Adding 1 config items from sedimentdrift
Source of sediments at Glomma river outlet
lat=59.169194
lon=10.962920
o.seed_elements(lon=lon, lat=lat, number=10000,
time=[datetime.utcnow(), datetime.utcnow()+timedelta(hours=48)],
terminal_velocity=-.001) # 1 mm/s settling speed
if False: # Using constant south-westwards current and wind
o.set_config('environment:fallback:x_sea_water_velocity', -.05)
o.set_config('environment:fallback:y_sea_water_velocity', -.1)
o.set_config('environment:fallback:y_wind', -6)
o.set_config('environment:fallback:x_wind', -2)
o.set_config('environment:fallback:sea_floor_depth_below_sea_level', 100) # 100m depth
else: # Using live data from Thredds
o.add_readers_from_list([
'https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be'])
14:06:21 DEBUG opendrift.readers.reader_lazy:32: Delaying initialisation of LazyReader: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:21 DEBUG opendrift.models.basemodel:952: Added reader LazyReader: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
Adding some diffusion
o.set_config('drift:current_uncertainty', .2)
o.set_config('drift:wind_uncertainty', 2)
o.set_config('vertical_mixing:diffusivitymodel', 'windspeed_Large1994')
#o.set_config('vertical_mixing:diffusivitymodel', 'environment')
o.run(time_step=600, time_step_output=1800, duration=timedelta(hours=36))
14:06:21 DEBUG opendrift.models.basemodel:2545:
------------------------------------------------------
Software and hardware:
OpenDrift version 1.10.7
Platform: Linux, 5.15.0-1039-aws
68.56807327270508 GB memory
36 processors (x86_64)
NumPy version 1.25.2
SciPy version 1.11.2
Matplotlib version 3.7.2
NetCDF4 version 1.6.1
Xarray version 2023.8.0
Python version 3.11.4 | packaged by conda-forge | (main, Jun 10 2023, 18:08:17) [GCC 12.2.0]
------------------------------------------------------
14:06:21 DEBUG opendrift.models.basemodel:2562: No output file is specified, neglecting export_buffer_length
14:06:21 INFO opendrift.models.basemodel:2591: Fallback values will be used for the following variables which have no readers:
14:06:21 INFO opendrift.models.basemodel:2594: x_sea_water_velocity: 0.000000
14:06:21 INFO opendrift.models.basemodel:2594: y_sea_water_velocity: 0.000000
14:06:21 INFO opendrift.models.basemodel:2594: upward_sea_water_velocity: 0.000000
14:06:21 INFO opendrift.models.basemodel:2594: x_wind: 0.000000
14:06:21 INFO opendrift.models.basemodel:2594: y_wind: 0.000000
14:06:21 INFO opendrift.models.basemodel:2594: sea_surface_wave_stokes_drift_x_velocity: 0.000000
14:06:21 INFO opendrift.models.basemodel:2594: sea_surface_wave_stokes_drift_y_velocity: 0.000000
14:06:21 INFO opendrift.models.basemodel:2594: sea_surface_wave_period_at_variance_spectral_density_maximum: 0.000000
14:06:21 INFO opendrift.models.basemodel:2594: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0.000000
14:06:21 INFO opendrift.models.basemodel:2594: ocean_vertical_diffusivity: 0.020000
14:06:21 INFO opendrift.models.basemodel:2594: ocean_mixed_layer_thickness: 50.000000
14:06:21 INFO opendrift.models.basemodel:2594: sea_floor_depth_below_sea_level: 10000.000000
14:06:21 DEBUG opendrift.models.basemodel:2718: Preparing readers for simulation coverage ([8.684760182679899, 58.0016257002547, 13.241080195127719, 60.33676083538983]) and time (2023-09-01 14:06:21.121579 to 2023-09-03 02:06:21.121579)
14:06:21 DEBUG opendrift.models.basemodel:2722: Preparing LazyReader: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:21 INFO opendrift.models.basemodel:2753: Adding a dynamical landmask with max. priority based on assumed maximum speed of 1 m/s. Adding a customised landmask may be faster...
14:06:21 DEBUG opendrift.readers.basereader:176: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated
14:06:27 DEBUG opendrift.models.basemodel:952: Added reader global_landmask
14:06:27 INFO opendrift.models.basemodel:1701: Using existing reader for land_binary_mask
14:06:27 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:27 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:27 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:27 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:27 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:27 DEBUG opendrift.models.basemodel:1253: Data needed for 10000 elements
14:06:27 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:27 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:27 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:27 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:27 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:27 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:27 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:27 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
14:06:27 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:27 DEBUG opendrift.models.basemodel:1527: 0 active elements
14:06:27 INFO opendrift.models.basemodel:1713: All points are in ocean
14:06:27 DEBUG opendrift.models.basemodel:1658: to be seeded: 10000, already seeded 0
14:06:27 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:06:27 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:06:27 INFO opendrift.models.basemodel:2882: 2023-09-01 14:06:21.121579 - step 1 of 216 - 35 active elements (0 deactivated)
14:06:27 DEBUG opendrift.models.basemodel:2888: 9965 elements scheduled.
14:06:27 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:06:27 DEBUG opendrift.models.basemodel:1205: Variables not covered by any reader: ['ocean_mixed_layer_thickness', 'x_sea_water_velocity', 'sea_surface_wave_stokes_drift_y_velocity', 'x_wind', 'upward_sea_water_velocity', 'sea_surface_wave_period_at_variance_spectral_density_maximum', 'sea_surface_wave_stokes_drift_x_velocity', 'sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment', 'sea_floor_depth_below_sea_level', 'y_wind', 'y_sea_water_velocity', 'ocean_vertical_diffusivity']
14:06:27 DEBUG opendrift.readers.reader_lazy:51: Initialising: LazyReader: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:27 INFO opendrift.readers.reader_netCDF_CF_generic:92: Opening dataset: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:30 DEBUG opendrift.readers.reader_netCDF_CF_generic:109: Finding coordinate variables.
14:06:30 DEBUG opendrift.readers.reader_netCDF_CF_generic:122: Parsing CF grid mapping dictionary: {'grid_mapping_name': 'polar_stereographic', 'straight_vertical_longitude_from_pole': 70.0, 'latitude_of_projection_origin': 90.0, 'standard_parallel': 60.0, 'false_easting': 3192800.0, 'false_northing': 1784000.0, 'semi_major_axis': 6378137.0, 'semi_minor_axis': 6356752.3142, 'proj4': '+proj=stere +lat_0=90 +lat_ts=60 +lon_0=70 +x_0=3192800 +y_0=1784000 +a=6378137 +b=6356752.3142 +units=m +no_defs +type=crs'}
/opt/conda/envs/opendrift/lib/python3.11/site-packages/pyproj/crs/crs.py:1286: UserWarning: You will likely lose important projection information when converting to a PROJ string from another format. See: https://proj.org/faq.html#what-is-the-best-format-for-describing-coordinate-reference-systems
proj = self._crs.to_proj4(version=version)
14:06:30 DEBUG opendrift.readers.reader_netCDF_CF_generic:310: Skipped variables without standard_name: ['angle', 'tke', 'ubar', 'vbar']
14:06:30 DEBUG opendrift.readers.basereader.variables:593: Setting buffer size 25 for reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be, assuming a maximum average speed of 5 m/s and time span of 1:00:00
14:06:30 DEBUG opendrift.readers.basereader:176: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated
14:06:30 DEBUG opendrift.readers.basereader.variables:548: Adding variable mapping: ['x_wind', 'y_wind'] -> wind_speed
14:06:30 DEBUG opendrift.readers.basereader.variables:548: Adding variable mapping: ['x_sea_water_velocity', 'y_sea_water_velocity'] -> sea_water_speed
14:06:30 DEBUG opendrift.readers.basereader.structured:119: Clearing cache for reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be before starting new simulation
14:06:30 DEBUG opendrift.readers.basereader:188: Nothing more to prepare for https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:30 DEBUG opendrift.readers.reader_lazy:58: Reader initialised: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:30 DEBUG opendrift.readers.basereader.variables:593: Setting buffer size 7 for reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be, assuming a maximum average speed of 1 m/s and time span of 1:00:00
14:06:30 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:30 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:30 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:30 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:30 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:30 DEBUG opendrift.models.basemodel:1253: Data needed for 35 elements
14:06:30 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:30 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:30 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:30 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:30 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:30 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:30 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:30 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:30 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:30 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:30 DEBUG opendrift.models.basemodel:1253: Data needed for 35 elements
14:06:30 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:30 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 14:00:00 (before)
2023-09-01 15:00:00 (after)
14:06:31 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:31 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:31 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:31 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:31 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:31 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:31 DEBUG opendrift.readers.basereader.structured:253: Fetched env-block (size 14x14x2) for time before (2023-09-01 14:00:00)
14:06:32 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:32 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:32 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:32 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:32 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:32 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:32 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 14x14x2) for time after (2023-09-01 15:00:00)
14:06:32 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 14:00:00) in space (linearNDFast)
14:06:32 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
/root/project/opendrift/readers/interpolation/interpolators.py:17: RuntimeWarning: overflow encountered in cast
data[mask] = np.finfo(np.float64).min
14:06:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:32 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 15:00:00) in space (linearNDFast)
14:06:32 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:32 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 14:00:00, weight 0.89) and
after (2023-09-01 15:00:00, weight 0.11) in time
14:06:32 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.037089417119375 and -59.037089417119375 degrees.
14:06:32 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.037089417119375 and -59.037089417119375 degrees.
14:06:32 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:32 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:32 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:32 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:32 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:32 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:32 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: 0.209423 (min) 1.17397 (max)
14:06:32 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.815059 (min) -0.0796469 (max)
14:06:32 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: 0.000168217 (min) 0.000168217 (max)
14:06:32 DEBUG opendrift.models.basemodel:1524: x_wind: -0.350769 (min) 6.5135 (max)
14:06:32 DEBUG opendrift.models.basemodel:1524: y_wind: -4.30199 (min) 1.78405 (max)
14:06:32 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:32 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:32 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:32 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:32 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
14:06:32 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:32 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:32 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.59209 (min) 6.59209 (max)
14:06:32 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:32 DEBUG opendrift.models.basemodel:1527: 35 active elements
14:06:32 DEBUG opendrift.models.basemodel:1536: latitude = 59.169193
14:06:32 DEBUG opendrift.models.basemodel:1541: longitude = 10.96292
14:06:32 DEBUG opendrift.models.basemodel:1546: z = 0.0
14:06:32 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:32 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:32 DEBUG opendrift.models.physics_methods:1050: min: 0.541418, mean: 3.354604, max: 6.133345
14:06:32 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.541418, mean: 3.354604, max: 6.133345
14:06:32 DEBUG opendrift.models.basemodel:811: No elements hit coastline.
14:06:32 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:06:32 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:06:32 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:32 DEBUG opendrift.models.oceandrift:376: No vertical advection for elements at surface
14:06:32 DEBUG opendrift.models.physics_methods:828: Advecting 35 of 35 elements above 0.100m with wind-sheared ocean current (0.012673 m/s - 0.143559 m/s)
14:06:32 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:32 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:32 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.046551662178354256
14:06:32 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:32 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:32 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:32 DEBUG opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:32 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:32 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:32 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:32 DEBUG opendrift.models.basemodel:2945: 35 active elements (0 deactivated)
14:06:32 DEBUG opendrift.models.basemodel:1658: to be seeded: 9965, already seeded 35
14:06:32 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:06:32 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:32 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:32 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:32 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:32 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:32 DEBUG opendrift.models.basemodel:1253: Data needed for 70 elements
14:06:32 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:32 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 14:00:00 (before)
2023-09-01 15:00:00 (after)
14:06:32 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 14:00:00) in space (linearNDFast)
14:06:32 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:32 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:32 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:32 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:32 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:32 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:32 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.59204 (min) 7.33284 (max)
14:06:32 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:32 DEBUG opendrift.models.basemodel:1527: 70 active elements
14:06:32 DEBUG opendrift.models.basemodel:1538: 59.16441253821837 <- latitude -> 59.169193267822266
14:06:32 DEBUG opendrift.models.basemodel:1543: 10.962920188903809 <- longitude -> 10.975955555445914
14:06:32 DEBUG opendrift.models.basemodel:1548: -6.582090129852295 <- z -> 0.0
14:06:32 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:32 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:06:32 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:06:32 INFO opendrift.models.basemodel:2882: 2023-09-01 14:16:21.121579 - step 2 of 216 - 70 active elements (0 deactivated)
14:06:32 DEBUG opendrift.models.basemodel:2888: 9930 elements scheduled.
14:06:32 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:06:32 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:32 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:32 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:32 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:32 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:32 DEBUG opendrift.models.basemodel:1253: Data needed for 70 elements
14:06:32 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:32 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:32 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:32 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:32 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:32 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:32 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:32 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:32 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:32 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:32 DEBUG opendrift.models.basemodel:1253: Data needed for 70 elements
14:06:32 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:32 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 14:00:00 (before)
2023-09-01 15:00:00 (after)
14:06:33 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:33 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:33 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:33 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:33 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:33 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:33 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 14x15x4) for time after (2023-09-01 15:00:00)
14:06:33 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 14:00:00) in space (linearNDFast)
14:06:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:33 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 15:00:00) in space (linearNDFast)
14:06:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 1
14:06:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 1
14:06:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 1
14:06:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 1
14:06:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:33 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 14:00:00, weight 0.73) and
after (2023-09-01 15:00:00, weight 0.27) in time
14:06:33 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.03709036875388 and -59.02405499543675 degrees.
14:06:33 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.03709036875388 and -59.02405499543675 degrees.
14:06:33 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:33 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:33 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:33 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:33 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:33 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:33 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.295117 (min) 1.2015 (max)
14:06:33 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.979665 (min) 0.177337 (max)
14:06:33 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: 7.85623e-05 (min) 0.000168513 (max)
14:06:33 DEBUG opendrift.models.basemodel:1524: x_wind: -3.40453 (min) 6.74957 (max)
14:06:33 DEBUG opendrift.models.basemodel:1524: y_wind: -7.70004 (min) 2.73056 (max)
14:06:33 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:33 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:33 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:33 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:33 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
14:06:33 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:33 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:33 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.59204 (min) 7.33284 (max)
14:06:33 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:33 DEBUG opendrift.models.basemodel:1527: 70 active elements
14:06:33 DEBUG opendrift.models.basemodel:1538: 59.16441253821837 <- latitude -> 59.169193267822266
14:06:33 DEBUG opendrift.models.basemodel:1543: 10.962920188903809 <- longitude -> 10.975955555445914
14:06:33 DEBUG opendrift.models.basemodel:1548: -6.582090129852295 <- z -> 0.0
14:06:33 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:33 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:33 DEBUG opendrift.models.physics_methods:1050: min: 0.198726, mean: 3.243954, max: 7.226293
14:06:33 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.198726, mean: 3.243954, max: 7.226293
14:06:33 DEBUG opendrift.models.basemodel:811: No elements hit coastline.
14:06:33 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:06:33 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:06:33 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:33 DEBUG opendrift.models.physics_methods:828: Advecting 35 of 70 elements above 0.100m with wind-sheared ocean current (0.004651 m/s - 0.169141 m/s)
14:06:33 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:33 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:33 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.06461909795339583
14:06:33 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:33 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:33 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:33 DEBUG opendrift.models.oceandrift:582: 1 elements penetrated seafloor, lifting up
14:06:33 DEBUG opendrift.models.oceandrift:582: 1 elements penetrated seafloor, lifting up
14:06:33 DEBUG opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:33 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:33 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:33 DEBUG opendrift.models.oceandrift:582: 2 elements penetrated seafloor, lifting up
14:06:33 DEBUG opendrift.models.oceandrift:582: 1 elements penetrated seafloor, lifting up
14:06:33 DEBUG opendrift.models.oceandrift:582: 1 elements penetrated seafloor, lifting up
14:06:33 DEBUG opendrift.models.oceandrift:582: 1 elements penetrated seafloor, lifting up
14:06:33 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:33 DEBUG opendrift.models.basemodel:2945: 70 active elements (0 deactivated)
14:06:33 DEBUG opendrift.models.basemodel:1658: to be seeded: 9930, already seeded 70
14:06:33 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:06:33 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:33 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:33 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:33 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:33 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:33 DEBUG opendrift.models.basemodel:1253: Data needed for 105 elements
14:06:33 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:33 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 14:00:00 (before)
2023-09-01 15:00:00 (after)
14:06:33 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 14:00:00) in space (linearNDFast)
14:06:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:33 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:33 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:33 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:33 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:33 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:33 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.59204 (min) 7.73746 (max)
14:06:33 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:33 DEBUG opendrift.models.basemodel:1527: 105 active elements
14:06:33 DEBUG opendrift.models.basemodel:1538: 59.160926142067076 <- latitude -> 59.169193267822266
14:06:33 DEBUG opendrift.models.basemodel:1543: 10.962920188903809 <- longitude -> 10.984739294850716
14:06:33 DEBUG opendrift.models.basemodel:1548: -6.9035303497314455 <- z -> 0.0
14:06:33 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:33 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:06:33 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:06:33 INFO opendrift.models.basemodel:2882: 2023-09-01 14:26:21.121579 - step 3 of 216 - 105 active elements (0 deactivated)
14:06:33 DEBUG opendrift.models.basemodel:2888: 9895 elements scheduled.
14:06:33 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:06:33 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:33 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:33 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:33 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:33 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:33 DEBUG opendrift.models.basemodel:1253: Data needed for 105 elements
14:06:33 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:33 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:33 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:33 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:33 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:33 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:33 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:33 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:33 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:33 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:33 DEBUG opendrift.models.basemodel:1253: Data needed for 105 elements
14:06:33 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:33 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 14:00:00 (before)
2023-09-01 15:00:00 (after)
14:06:34 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:34 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:34 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:34 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:34 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:34 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:34 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 15x16x4) for time after (2023-09-01 15:00:00)
14:06:34 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 14:00:00) in space (linearNDFast)
14:06:34 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:34 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 15:00:00) in space (linearNDFast)
14:06:34 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
14:06:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
14:06:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 90 elements, expanding data 1
14:06:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 90 elements, expanding data 1
14:06:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 90 elements, expanding data 1
14:06:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 90 elements, expanding data 1
14:06:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
14:06:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
14:06:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
14:06:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
14:06:34 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 14:00:00, weight 0.56) and
after (2023-09-01 15:00:00, weight 0.44) in time
14:06:34 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.03709036875388 and -59.01527126135302 degrees.
14:06:34 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.03709036875388 and -59.01527126135302 degrees.
14:06:34 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:34 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:34 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:34 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:34 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:34 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:34 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.545091 (min) 1.03971 (max)
14:06:34 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.02631 (min) 0.380296 (max)
14:06:34 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: 6.12511e-05 (min) 0.000168795 (max)
14:06:34 DEBUG opendrift.models.basemodel:1524: x_wind: -3.33785 (min) 8.06094 (max)
14:06:34 DEBUG opendrift.models.basemodel:1524: y_wind: -7.10279 (min) 3.10942 (max)
14:06:34 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:34 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:34 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:34 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:34 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:06:34 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:34 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:34 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.59204 (min) 7.73746 (max)
14:06:34 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:34 DEBUG opendrift.models.basemodel:1527: 105 active elements
14:06:34 DEBUG opendrift.models.basemodel:1538: 59.160926142067076 <- latitude -> 59.169193267822266
14:06:34 DEBUG opendrift.models.basemodel:1543: 10.962920188903809 <- longitude -> 10.984739294850716
14:06:34 DEBUG opendrift.models.basemodel:1548: -6.9035303497314455 <- z -> 0.0
14:06:34 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:34 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:34 DEBUG opendrift.models.physics_methods:1050: min: 0.007656, mean: 3.346421, max: 6.891480
14:06:34 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.007656, mean: 3.346421, max: 6.891480
14:06:34 DEBUG opendrift.models.basemodel:813: 9 elements hit coastline, moving back to water
14:06:34 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:06:34 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:06:34 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:34 DEBUG opendrift.models.physics_methods:828: Advecting 35 of 105 elements above 0.100m with wind-sheared ocean current (0.001363 m/s - 0.154904 m/s)
14:06:34 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:34 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:34 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.05877024818118094
14:06:34 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:34 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:34 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:34 DEBUG opendrift.models.oceandrift:582: 1 elements penetrated seafloor, lifting up
14:06:34 DEBUG opendrift.models.oceandrift:582: 1 elements penetrated seafloor, lifting up
14:06:34 DEBUG opendrift.models.oceandrift:582: 1 elements penetrated seafloor, lifting up
14:06:34 DEBUG opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:34 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:34 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:34 DEBUG opendrift.models.oceandrift:582: 1 elements penetrated seafloor, lifting up
14:06:34 DEBUG opendrift.models.oceandrift:582: 1 elements penetrated seafloor, lifting up
14:06:34 DEBUG opendrift.models.oceandrift:582: 1 elements penetrated seafloor, lifting up
14:06:34 DEBUG opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:34 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:34 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:34 DEBUG opendrift.models.oceandrift:582: 1 elements penetrated seafloor, lifting up
14:06:34 DEBUG opendrift.models.oceandrift:582: 4 elements penetrated seafloor, lifting up
14:06:34 DEBUG opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:34 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:34 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:34 DEBUG opendrift.models.oceandrift:582: 1 elements penetrated seafloor, lifting up
14:06:34 DEBUG opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:34 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:34 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:34 DEBUG opendrift.models.oceandrift:582: 1 elements penetrated seafloor, lifting up
14:06:34 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:34 DEBUG opendrift.models.basemodel:2945: 105 active elements (0 deactivated)
14:06:34 DEBUG opendrift.models.basemodel:1658: to be seeded: 9895, already seeded 105
14:06:34 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:06:34 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:34 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:34 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:34 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:34 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:34 DEBUG opendrift.models.basemodel:1253: Data needed for 139 elements
14:06:34 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:34 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 14:00:00 (before)
2023-09-01 15:00:00 (after)
14:06:34 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 14:00:00) in space (linearNDFast)
14:06:34 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:34 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:34 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:34 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:34 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:34 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:34 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.59204 (min) 7.96482 (max)
14:06:34 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:34 DEBUG opendrift.models.basemodel:1527: 139 active elements
14:06:34 DEBUG opendrift.models.basemodel:1538: 59.15887493786758 <- latitude -> 59.1693306645268
14:06:34 DEBUG opendrift.models.basemodel:1543: 10.962920188903809 <- longitude -> 10.986033197554201
14:06:34 DEBUG opendrift.models.basemodel:1548: -7.639473190307617 <- z -> 0.0
14:06:34 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:34 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:34 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:06:34 INFO opendrift.models.basemodel:2882: 2023-09-01 14:36:21.121579 - step 4 of 216 - 139 active elements (0 deactivated)
14:06:34 DEBUG opendrift.models.basemodel:2888: 9861 elements scheduled.
14:06:34 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:06:34 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:34 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:34 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:34 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:34 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:34 DEBUG opendrift.models.basemodel:1253: Data needed for 139 elements
14:06:34 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:34 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:34 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:34 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:34 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:34 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:34 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:34 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:34 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:34 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:34 DEBUG opendrift.models.basemodel:1253: Data needed for 139 elements
14:06:34 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:34 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 14:00:00 (before)
2023-09-01 15:00:00 (after)
14:06:35 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:35 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:35 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:35 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:35 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:35 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:35 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 16x16x4) for time after (2023-09-01 15:00:00)
14:06:35 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 14:00:00) in space (linearNDFast)
14:06:35 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:35 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 15:00:00) in space (linearNDFast)
14:06:35 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 1
14:06:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 1
14:06:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1
14:06:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1
14:06:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1
14:06:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1
14:06:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 1
14:06:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 1
14:06:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 1
14:06:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 1
14:06:35 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 14:00:00, weight 0.39) and
after (2023-09-01 15:00:00, weight 0.61) in time
14:06:35 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.03709036875388 and -59.013977346586906 degrees.
14:06:35 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.03709036875388 and -59.013977346586906 degrees.
14:06:35 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:35 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:35 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:35 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:35 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:35 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:35 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.413164 (min) 1.11938 (max)
14:06:35 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.958255 (min) 0.178987 (max)
14:06:35 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: 5.2724e-05 (min) 0.000169078 (max)
14:06:35 DEBUG opendrift.models.basemodel:1524: x_wind: -2.01398 (min) 7.33348 (max)
14:06:35 DEBUG opendrift.models.basemodel:1524: y_wind: -7.50778 (min) 2.83401 (max)
14:06:35 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:35 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:35 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:35 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:35 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:06:35 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:35 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:35 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.59204 (min) 7.96482 (max)
14:06:35 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:35 DEBUG opendrift.models.basemodel:1527: 139 active elements
14:06:35 DEBUG opendrift.models.basemodel:1538: 59.15887493786758 <- latitude -> 59.1693306645268
14:06:35 DEBUG opendrift.models.basemodel:1543: 10.962920188903809 <- longitude -> 10.986033197554201
14:06:35 DEBUG opendrift.models.basemodel:1548: -7.639473190307617 <- z -> 0.0
14:06:35 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:35 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:35 DEBUG opendrift.models.physics_methods:1050: min: 0.619212, mean: 3.425353, max: 6.861080
14:06:35 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.619212, mean: 3.425353, max: 6.861080
14:06:35 DEBUG opendrift.models.basemodel:813: 14 elements hit coastline, moving back to water
14:06:35 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:35 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:06:35 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:35 DEBUG opendrift.models.physics_methods:828: Advecting 36 of 139 elements above 0.100m with wind-sheared ocean current (0.015334 m/s - 0.154370 m/s)
14:06:35 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:35 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:35 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.0582529281080532
14:06:35 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:35 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:35 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:35 DEBUG opendrift.models.oceandrift:582: 3 elements penetrated seafloor, lifting up
14:06:35 DEBUG opendrift.models.oceandrift:582: 5 elements penetrated seafloor, lifting up
14:06:35 DEBUG opendrift.models.oceandrift:582: 5 elements penetrated seafloor, lifting up
14:06:35 DEBUG opendrift.models.oceandrift:582: 4 elements penetrated seafloor, lifting up
14:06:35 DEBUG opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:35 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:35 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:35 DEBUG opendrift.models.oceandrift:582: 4 elements penetrated seafloor, lifting up
14:06:35 DEBUG opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:35 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:35 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:35 DEBUG opendrift.models.oceandrift:582: 3 elements penetrated seafloor, lifting up
14:06:35 DEBUG opendrift.models.oceandrift:582: 7 elements penetrated seafloor, lifting up
14:06:35 DEBUG opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:35 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:35 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:35 DEBUG opendrift.models.oceandrift:582: 8 elements penetrated seafloor, lifting up
14:06:35 DEBUG opendrift.models.oceandrift:582: 6 elements penetrated seafloor, lifting up
14:06:35 DEBUG opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:35 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:35 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:35 DEBUG opendrift.models.oceandrift:582: 6 elements penetrated seafloor, lifting up
14:06:35 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:35 DEBUG opendrift.models.basemodel:2945: 139 active elements (0 deactivated)
14:06:35 DEBUG opendrift.models.basemodel:1658: to be seeded: 9861, already seeded 139
14:06:35 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:06:35 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:35 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:35 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:35 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:35 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:35 DEBUG opendrift.models.basemodel:1253: Data needed for 174 elements
14:06:35 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:35 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 14:00:00 (before)
2023-09-01 15:00:00 (after)
14:06:35 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 14:00:00) in space (linearNDFast)
14:06:35 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:35 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:35 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:35 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:35 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:35 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:35 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.59204 (min) 8.2154 (max)
14:06:35 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:35 DEBUG opendrift.models.basemodel:1527: 174 active elements
14:06:35 DEBUG opendrift.models.basemodel:1538: 59.156373636924926 <- latitude -> 59.169193267822266
14:06:35 DEBUG opendrift.models.basemodel:1543: 10.960655209240642 <- longitude -> 10.990065116941548
14:06:35 DEBUG opendrift.models.basemodel:1548: -7.663139572143555 <- z -> 0.0
14:06:35 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:35 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:35 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:06:35 INFO opendrift.models.basemodel:2882: 2023-09-01 14:46:21.121579 - step 5 of 216 - 174 active elements (0 deactivated)
14:06:35 DEBUG opendrift.models.basemodel:2888: 9826 elements scheduled.
14:06:35 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:06:35 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:35 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:35 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:35 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:35 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:35 DEBUG opendrift.models.basemodel:1253: Data needed for 174 elements
14:06:35 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:35 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:35 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:35 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:35 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:35 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:35 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:35 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:35 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:35 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:35 DEBUG opendrift.models.basemodel:1253: Data needed for 174 elements
14:06:35 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:35 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 14:00:00 (before)
2023-09-01 15:00:00 (after)
14:06:35 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:35 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:35 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:35 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:35 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:35 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:35 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 16x17x4) for time after (2023-09-01 15:00:00)
14:06:35 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 14:00:00) in space (linearNDFast)
14:06:35 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:35 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 15:00:00) in space (linearNDFast)
14:06:35 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 1
14:06:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 1
14:06:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 1
14:06:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 1
14:06:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:35 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 14:00:00, weight 0.23) and
after (2023-09-01 15:00:00, weight 0.77) in time
14:06:35 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.039355339970925 and -59.00994543944508 degrees.
14:06:35 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.039355339970925 and -59.00994543944508 degrees.
14:06:35 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:35 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:35 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:35 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:35 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:35 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:35 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.388533 (min) 1.13393 (max)
14:06:35 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.11 (min) 0.444272 (max)
14:06:35 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: 3.8678e-05 (min) 0.00016936 (max)
14:06:35 DEBUG opendrift.models.basemodel:1524: x_wind: -1.69205 (min) 7.93451 (max)
14:06:35 DEBUG opendrift.models.basemodel:1524: y_wind: -6.08579 (min) 3.47143 (max)
14:06:35 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:35 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:35 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:35 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:35 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:06:35 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:35 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:35 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.59204 (min) 8.2154 (max)
14:06:35 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:35 DEBUG opendrift.models.basemodel:1527: 174 active elements
14:06:35 DEBUG opendrift.models.basemodel:1538: 59.156373636924926 <- latitude -> 59.169193267822266
14:06:35 DEBUG opendrift.models.basemodel:1543: 10.960655209240642 <- longitude -> 10.990065116941548
14:06:35 DEBUG opendrift.models.basemodel:1548: -7.658063888549805 <- z -> 0.0
14:06:35 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:35 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:35 DEBUG opendrift.models.physics_methods:1050: min: 0.519261, mean: 3.322174, max: 7.436176
14:06:35 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.519261, mean: 3.322174, max: 7.436176
14:06:35 DEBUG opendrift.models.basemodel:813: 11 elements hit coastline, moving back to water
14:06:35 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:06:35 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:06:35 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:35 DEBUG opendrift.models.physics_methods:828: Advecting 36 of 174 elements above 0.100m with wind-sheared ocean current (0.010359 m/s - 0.155586 m/s)
14:06:35 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:35 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:35 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.0684270087199974
14:06:35 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:35 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:35 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:35 DEBUG opendrift.models.oceandrift:582: 8 elements penetrated seafloor, lifting up
14:06:35 DEBUG opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:35 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:35 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:35 DEBUG opendrift.models.oceandrift:582: 3 elements penetrated seafloor, lifting up
14:06:35 DEBUG opendrift.models.oceandrift:582: 6 elements penetrated seafloor, lifting up
14:06:35 DEBUG opendrift.models.oceandrift:582: 7 elements penetrated seafloor, lifting up
14:06:35 DEBUG opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:35 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:35 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:35 DEBUG opendrift.models.oceandrift:582: 6 elements penetrated seafloor, lifting up
14:06:35 DEBUG opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:35 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:35 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:35 DEBUG opendrift.models.oceandrift:582: 7 elements penetrated seafloor, lifting up
14:06:35 DEBUG opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:35 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:35 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:35 DEBUG opendrift.models.oceandrift:582: 8 elements penetrated seafloor, lifting up
14:06:35 DEBUG opendrift.models.oceandrift:582: 12 elements penetrated seafloor, lifting up
14:06:35 DEBUG opendrift.models.oceandrift:582: 12 elements penetrated seafloor, lifting up
14:06:35 DEBUG opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:35 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:35 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:35 DEBUG opendrift.models.oceandrift:582: 10 elements penetrated seafloor, lifting up
14:06:35 DEBUG opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:35 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:35 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:35 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:35 DEBUG opendrift.models.basemodel:2945: 174 active elements (0 deactivated)
14:06:35 DEBUG opendrift.models.basemodel:1658: to be seeded: 9826, already seeded 174
14:06:35 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:06:35 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:35 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:35 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:35 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:35 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:35 DEBUG opendrift.models.basemodel:1253: Data needed for 209 elements
14:06:35 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:35 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 14:00:00 (before)
2023-09-01 15:00:00 (after)
14:06:35 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 14:00:00) in space (linearNDFast)
14:06:35 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:35 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:35 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:35 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:35 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:35 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:35 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.59204 (min) 9.1889 (max)
14:06:35 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:35 DEBUG opendrift.models.basemodel:1527: 209 active elements
14:06:35 DEBUG opendrift.models.basemodel:1538: 59.15207334004717 <- latitude -> 59.16938797447331
14:06:35 DEBUG opendrift.models.basemodel:1543: 10.960417568334005 <- longitude -> 10.992724264113562
14:06:35 DEBUG opendrift.models.basemodel:1548: -7.738651752471924 <- z -> 0.0
14:06:35 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:35 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:35 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:06:35 INFO opendrift.models.basemodel:2882: 2023-09-01 14:56:21.121579 - step 6 of 216 - 209 active elements (0 deactivated)
14:06:35 DEBUG opendrift.models.basemodel:2888: 9791 elements scheduled.
14:06:35 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:06:35 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:35 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:35 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:35 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:35 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:35 DEBUG opendrift.models.basemodel:1253: Data needed for 209 elements
14:06:35 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:35 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:35 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:35 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:35 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:35 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:35 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:35 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:35 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:35 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:35 DEBUG opendrift.models.basemodel:1253: Data needed for 209 elements
14:06:35 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:35 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 14:00:00 (before)
2023-09-01 15:00:00 (after)
14:06:36 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:36 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:36 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:36 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:36 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:36 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:36 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 16x17x4) for time after (2023-09-01 15:00:00)
14:06:36 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 14:00:00) in space (linearNDFast)
14:06:36 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:36 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 15:00:00) in space (linearNDFast)
14:06:36 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 147 elements, expanding data 1
14:06:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 147 elements, expanding data 1
14:06:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 147 elements, expanding data 1
14:06:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 147 elements, expanding data 1
14:06:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:36 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 14:00:00, weight 0.06) and
after (2023-09-01 15:00:00, weight 0.94) in time
14:06:36 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.039592981393895 and -59.00728629134782 degrees.
14:06:36 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.039592981393895 and -59.00728629134782 degrees.
14:06:36 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:36 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:36 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:36 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:36 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:36 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:36 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.590206 (min) 1.20562 (max)
14:06:36 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.976856 (min) 0.274168 (max)
14:06:36 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -1.13441e-05 (min) 0.000203662 (max)
14:06:36 DEBUG opendrift.models.basemodel:1524: x_wind: -3.52282 (min) 8.49267 (max)
14:06:36 DEBUG opendrift.models.basemodel:1524: y_wind: -5.87961 (min) 2.59595 (max)
14:06:36 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:36 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:36 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:36 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:36 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:06:36 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:36 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:36 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.59204 (min) 9.1889 (max)
14:06:36 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:36 DEBUG opendrift.models.basemodel:1527: 209 active elements
14:06:36 DEBUG opendrift.models.basemodel:1538: 59.15207334004717 <- latitude -> 59.16938797447331
14:06:36 DEBUG opendrift.models.basemodel:1543: 10.960417568334005 <- longitude -> 10.992724264113562
14:06:36 DEBUG opendrift.models.basemodel:1548: -7.716254234313965 <- z -> 0.0
14:06:36 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:36 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:36 DEBUG opendrift.models.physics_methods:1050: min: 0.293840, mean: 3.249236, max: 8.422784
14:06:36 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.293840, mean: 3.249236, max: 8.422784
14:06:36 DEBUG opendrift.models.basemodel:813: 16 elements hit coastline, moving back to water
14:06:36 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:06:36 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:06:36 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:36 DEBUG opendrift.models.physics_methods:828: Advecting 36 of 209 elements above 0.100m with wind-sheared ocean current (0.012100 m/s - 0.197146 m/s)
14:06:36 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:36 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:36 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08778773143632888
14:06:36 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:36 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:36 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:36 DEBUG opendrift.models.oceandrift:582: 9 elements penetrated seafloor, lifting up
14:06:36 DEBUG opendrift.models.oceandrift:582: 7 elements penetrated seafloor, lifting up
14:06:36 DEBUG opendrift.models.oceandrift:582: 12 elements penetrated seafloor, lifting up
14:06:36 DEBUG opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:36 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:36 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:36 DEBUG opendrift.models.oceandrift:582: 14 elements penetrated seafloor, lifting up
14:06:36 DEBUG opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:36 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:36 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:36 DEBUG opendrift.models.oceandrift:582: 10 elements penetrated seafloor, lifting up
14:06:36 DEBUG opendrift.models.oceandrift:582: 14 elements penetrated seafloor, lifting up
14:06:36 DEBUG opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:36 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:36 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:36 DEBUG opendrift.models.oceandrift:582: 13 elements penetrated seafloor, lifting up
14:06:36 DEBUG opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:36 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:36 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:36 DEBUG opendrift.models.oceandrift:582: 11 elements penetrated seafloor, lifting up
14:06:36 DEBUG opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:36 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:36 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:36 DEBUG opendrift.models.oceandrift:582: 12 elements penetrated seafloor, lifting up
14:06:36 DEBUG opendrift.models.oceandrift:582: 13 elements penetrated seafloor, lifting up
14:06:36 DEBUG opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:36 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:36 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:36 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:36 DEBUG opendrift.models.basemodel:2945: 209 active elements (0 deactivated)
14:06:36 DEBUG opendrift.models.basemodel:1658: to be seeded: 9791, already seeded 209
14:06:36 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:06:36 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:36 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:36 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:36 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:36 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:36 DEBUG opendrift.models.basemodel:1253: Data needed for 244 elements
14:06:36 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:36 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 15:00:00 (before)
2023-09-01 16:00:00 (after)
14:06:36 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 15:00:00) in space (linearNDFast)
14:06:36 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:06:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:06:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:06:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:06:36 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:36 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:36 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:36 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:36 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:36 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.59204 (min) 9.98324 (max)
14:06:36 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:36 DEBUG opendrift.models.basemodel:1527: 244 active elements
14:06:36 DEBUG opendrift.models.basemodel:1538: 59.148397376837565 <- latitude -> 59.169193267822266
14:06:36 DEBUG opendrift.models.basemodel:1543: 10.959344753250036 <- longitude -> 10.999852511145564
14:06:36 DEBUG opendrift.models.basemodel:1548: -8.024125328063965 <- z -> 0.0
14:06:36 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:36 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:36 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:06:36 INFO opendrift.models.basemodel:2882: 2023-09-01 15:06:21.121579 - step 7 of 216 - 244 active elements (0 deactivated)
14:06:36 DEBUG opendrift.models.basemodel:2888: 9756 elements scheduled.
14:06:36 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:06:36 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:36 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:36 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:36 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:36 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:36 DEBUG opendrift.models.basemodel:1253: Data needed for 244 elements
14:06:36 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:36 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:36 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:36 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:36 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:36 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:36 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:36 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:36 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:36 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:36 DEBUG opendrift.models.basemodel:1253: Data needed for 244 elements
14:06:36 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:36 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 15:00:00 (before)
2023-09-01 16:00:00 (after)
14:06:37 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:37 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:37 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:37 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:37 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:37 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:37 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 17x18x4) for time after (2023-09-01 16:00:00)
14:06:37 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 15:00:00) in space (linearNDFast)
14:06:37 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:37 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 16:00:00) in space (linearNDFast)
14:06:37 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
14:06:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
14:06:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
14:06:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
14:06:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 165 elements, expanding data 1
14:06:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:06:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 165 elements, expanding data 1
14:06:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:06:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 165 elements, expanding data 1
14:06:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:06:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 165 elements, expanding data 1
14:06:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:06:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:37 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 15:00:00, weight 0.89) and
after (2023-09-01 16:00:00, weight 0.11) in time
14:06:37 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.040665792525004 and -59.00015804852999 degrees.
14:06:37 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.040665792525004 and -59.00015804852999 degrees.
14:06:37 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:37 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:37 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:37 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:37 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:37 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:37 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.575684 (min) 1.10292 (max)
14:06:37 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.02638 (min) 0.329657 (max)
14:06:37 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -5.21579e-06 (min) 0.000202226 (max)
14:06:37 DEBUG opendrift.models.basemodel:1524: x_wind: -2.42773 (min) 8.21935 (max)
14:06:37 DEBUG opendrift.models.basemodel:1524: y_wind: -5.73977 (min) 3.77027 (max)
14:06:37 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:37 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:37 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:37 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:37 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:06:37 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:37 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:37 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.59204 (min) 9.98324 (max)
14:06:37 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:37 DEBUG opendrift.models.basemodel:1527: 244 active elements
14:06:37 DEBUG opendrift.models.basemodel:1538: 59.148397376837565 <- latitude -> 59.169193267822266
14:06:37 DEBUG opendrift.models.basemodel:1543: 10.959344753250036 <- longitude -> 10.999852511145564
14:06:37 DEBUG opendrift.models.basemodel:1548: -8.024125328063965 <- z -> 0.0
14:06:37 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:37 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:37 DEBUG opendrift.models.physics_methods:1050: min: 0.029428, mean: 3.128323, max: 8.107981
14:06:37 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.029428, mean: 3.128323, max: 8.107981
14:06:37 DEBUG opendrift.models.basemodel:813: 27 elements hit coastline, moving back to water
14:06:37 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:06:37 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:06:37 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:37 DEBUG opendrift.models.physics_methods:828: Advecting 36 of 244 elements above 0.100m with wind-sheared ocean current (0.009605 m/s - 0.189778 m/s)
14:06:37 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:37 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:37 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08134849924524307
14:06:37 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:37 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:37 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:37 DEBUG opendrift.models.oceandrift:582: 18 elements penetrated seafloor, lifting up
14:06:37 DEBUG opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:37 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:37 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:37 DEBUG opendrift.models.oceandrift:582: 12 elements penetrated seafloor, lifting up
14:06:37 DEBUG opendrift.models.oceandrift:582: 11 elements penetrated seafloor, lifting up
14:06:37 DEBUG opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:37 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:37 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:37 DEBUG opendrift.models.oceandrift:582: 11 elements penetrated seafloor, lifting up
14:06:37 DEBUG opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:37 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:37 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:37 DEBUG opendrift.models.oceandrift:582: 13 elements penetrated seafloor, lifting up
14:06:37 DEBUG opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:37 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:37 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:37 DEBUG opendrift.models.oceandrift:582: 19 elements penetrated seafloor, lifting up
14:06:37 DEBUG opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:37 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:37 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:37 DEBUG opendrift.models.oceandrift:582: 10 elements penetrated seafloor, lifting up
14:06:37 DEBUG opendrift.models.oceandrift:582: 15 elements penetrated seafloor, lifting up
14:06:37 DEBUG opendrift.models.oceandrift:582: 22 elements penetrated seafloor, lifting up
14:06:37 DEBUG opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:37 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:37 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:37 DEBUG opendrift.models.oceandrift:582: 22 elements penetrated seafloor, lifting up
14:06:37 DEBUG opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:37 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:37 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:37 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:37 DEBUG opendrift.models.basemodel:2945: 244 active elements (0 deactivated)
14:06:37 DEBUG opendrift.models.basemodel:1658: to be seeded: 9756, already seeded 244
14:06:37 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:06:37 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:37 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:37 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:37 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:37 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:37 DEBUG opendrift.models.basemodel:1253: Data needed for 278 elements
14:06:37 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:37 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 15:00:00 (before)
2023-09-01 16:00:00 (after)
14:06:37 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 15:00:00) in space (linearNDFast)
14:06:37 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:37 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:37 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:37 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:37 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:37 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:37 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.59204 (min) 9.98766 (max)
14:06:37 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:37 DEBUG opendrift.models.basemodel:1527: 278 active elements
14:06:37 DEBUG opendrift.models.basemodel:1538: 59.14832143409943 <- latitude -> 59.169395612211666
14:06:37 DEBUG opendrift.models.basemodel:1543: 10.957936579872966 <- longitude -> 10.998164834762282
14:06:37 DEBUG opendrift.models.basemodel:1548: -8.253931357501758 <- z -> 0.0
14:06:37 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:37 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:37 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:06:37 INFO opendrift.models.basemodel:2882: 2023-09-01 15:16:21.121579 - step 8 of 216 - 278 active elements (0 deactivated)
14:06:37 DEBUG opendrift.models.basemodel:2888: 9722 elements scheduled.
14:06:37 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:06:37 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:37 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:37 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:37 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:37 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:37 DEBUG opendrift.models.basemodel:1253: Data needed for 278 elements
14:06:37 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:37 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:37 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:37 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:37 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:37 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:37 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:37 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:37 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:37 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:37 DEBUG opendrift.models.basemodel:1253: Data needed for 278 elements
14:06:37 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:37 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 15:00:00 (before)
2023-09-01 16:00:00 (after)
14:06:38 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:38 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:38 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:38 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:38 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:38 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:38 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 17x18x4) for time after (2023-09-01 16:00:00)
14:06:38 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 15:00:00) in space (linearNDFast)
14:06:38 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:38 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 16:00:00) in space (linearNDFast)
14:06:38 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 186 elements, expanding data 1
14:06:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:06:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 186 elements, expanding data 1
14:06:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:06:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 186 elements, expanding data 1
14:06:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:06:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 186 elements, expanding data 1
14:06:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:06:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:38 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 15:00:00, weight 0.73) and
after (2023-09-01 16:00:00, weight 0.27) in time
14:06:38 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.042073978451484 and -59.0018457155171 degrees.
14:06:38 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.042073978451484 and -59.0018457155171 degrees.
14:06:38 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:38 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:38 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:38 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:38 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:38 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:38 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.545918 (min) 1.14451 (max)
14:06:38 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.995596 (min) 0.459322 (max)
14:06:38 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000116386 (min) 0.000256131 (max)
14:06:38 DEBUG opendrift.models.basemodel:1524: x_wind: -2.52739 (min) 9.42773 (max)
14:06:38 DEBUG opendrift.models.basemodel:1524: y_wind: -6.11211 (min) 3.84113 (max)
14:06:38 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:38 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:38 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:38 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:38 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:06:38 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:38 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:38 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.59204 (min) 9.98766 (max)
14:06:38 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:38 DEBUG opendrift.models.basemodel:1527: 278 active elements
14:06:38 DEBUG opendrift.models.basemodel:1538: 59.14832143409943 <- latitude -> 59.169395612211666
14:06:38 DEBUG opendrift.models.basemodel:1543: 10.957936579872966 <- longitude -> 10.998164834762282
14:06:38 DEBUG opendrift.models.basemodel:1548: -8.253931357501758 <- z -> 0.0
14:06:38 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:38 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:38 DEBUG opendrift.models.physics_methods:1050: min: 0.498946, mean: 3.192805, max: 8.191476
14:06:38 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.498946, mean: 3.192805, max: 8.191476
14:06:38 DEBUG opendrift.models.basemodel:813: 24 elements hit coastline, moving back to water
14:06:38 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:06:38 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:06:38 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:38 DEBUG opendrift.models.physics_methods:828: Advecting 35 of 278 elements above 0.100m with wind-sheared ocean current (0.006888 m/s - 0.147012 m/s)
14:06:38 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:38 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:38 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.0830324951687622
14:06:38 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:38 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:38 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:38 DEBUG opendrift.models.oceandrift:582: 17 elements penetrated seafloor, lifting up
14:06:38 DEBUG opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:38 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:38 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:38 DEBUG opendrift.models.oceandrift:582: 15 elements penetrated seafloor, lifting up
14:06:38 DEBUG opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:38 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:38 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:38 DEBUG opendrift.models.oceandrift:582: 18 elements penetrated seafloor, lifting up
14:06:38 DEBUG opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:38 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:38 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:38 DEBUG opendrift.models.oceandrift:582: 13 elements penetrated seafloor, lifting up
14:06:38 DEBUG opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:38 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:38 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:38 DEBUG opendrift.models.oceandrift:582: 16 elements penetrated seafloor, lifting up
14:06:38 DEBUG opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:38 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:38 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:38 DEBUG opendrift.models.oceandrift:582: 7 elements penetrated seafloor, lifting up
14:06:38 DEBUG opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:38 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:38 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:38 DEBUG opendrift.models.oceandrift:582: 17 elements penetrated seafloor, lifting up
14:06:38 DEBUG opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:38 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:38 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:38 DEBUG opendrift.models.oceandrift:582: 13 elements penetrated seafloor, lifting up
14:06:38 DEBUG opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:38 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:38 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:38 DEBUG opendrift.models.oceandrift:582: 15 elements penetrated seafloor, lifting up
14:06:38 DEBUG opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:38 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:38 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:38 DEBUG opendrift.models.oceandrift:582: 13 elements penetrated seafloor, lifting up
14:06:38 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:38 DEBUG opendrift.models.basemodel:2945: 278 active elements (0 deactivated)
14:06:38 DEBUG opendrift.models.basemodel:1658: to be seeded: 9722, already seeded 278
14:06:38 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:06:38 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:38 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:38 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:38 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:38 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:38 DEBUG opendrift.models.basemodel:1253: Data needed for 313 elements
14:06:38 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:38 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 15:00:00 (before)
2023-09-01 16:00:00 (after)
14:06:38 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 15:00:00) in space (linearNDFast)
14:06:38 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:38 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:38 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:38 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:38 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:38 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:38 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.56388 (min) 9.88011 (max)
14:06:38 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:38 DEBUG opendrift.models.basemodel:1527: 313 active elements
14:06:38 DEBUG opendrift.models.basemodel:1538: 59.14869001141264 <- latitude -> 59.17008289222119
14:06:38 DEBUG opendrift.models.basemodel:1543: 10.956570547950063 <- longitude -> 10.997814480657802
14:06:38 DEBUG opendrift.models.basemodel:1548: -8.378004302978516 <- z -> 0.0
14:06:38 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:38 DEBUG opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
14:06:38 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:06:38 INFO opendrift.models.basemodel:2882: 2023-09-01 15:26:21.121579 - step 9 of 216 - 313 active elements (0 deactivated)
14:06:38 DEBUG opendrift.models.basemodel:2888: 9687 elements scheduled.
14:06:38 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:06:38 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:38 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:38 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:38 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:38 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:38 DEBUG opendrift.models.basemodel:1253: Data needed for 313 elements
14:06:38 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:38 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:38 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:38 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:38 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:38 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:38 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:38 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:38 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:38 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:38 DEBUG opendrift.models.basemodel:1253: Data needed for 313 elements
14:06:38 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:38 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 15:00:00 (before)
2023-09-01 16:00:00 (after)
14:06:39 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:39 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:39 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:39 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:39 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:39 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:39 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 17x18x4) for time after (2023-09-01 16:00:00)
14:06:39 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 15:00:00) in space (linearNDFast)
14:06:39 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:39 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 16:00:00) in space (linearNDFast)
14:06:39 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 1
14:06:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 1
14:06:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 1
14:06:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 1
14:06:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 1
14:06:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 1
14:06:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 196 elements, expanding data 1
14:06:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:06:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 196 elements, expanding data 1
14:06:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:06:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 196 elements, expanding data 1
14:06:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:06:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 196 elements, expanding data 1
14:06:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:06:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 1
14:06:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 1
14:06:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 1
14:06:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 1
14:06:39 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 15:00:00, weight 0.56) and
after (2023-09-01 16:00:00, weight 0.44) in time
14:06:39 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.043440002977654 and -59.00219607871939 degrees.
14:06:39 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.043440002977654 and -59.00219607871939 degrees.
14:06:39 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:39 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:39 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:39 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:39 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:39 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:39 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.61792 (min) 1.19176 (max)
14:06:39 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.962184 (min) 0.469613 (max)
14:06:39 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000131751 (min) 0.000368963 (max)
14:06:39 DEBUG opendrift.models.basemodel:1524: x_wind: -2.66965 (min) 8.61127 (max)
14:06:39 DEBUG opendrift.models.basemodel:1524: y_wind: -6.70816 (min) 4.65392 (max)
14:06:39 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:39 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:39 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:39 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:39 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:06:39 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:39 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:39 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.56388 (min) 9.88011 (max)
14:06:39 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:39 DEBUG opendrift.models.basemodel:1527: 313 active elements
14:06:39 DEBUG opendrift.models.basemodel:1538: 59.14869001141264 <- latitude -> 59.17008289222119
14:06:39 DEBUG opendrift.models.basemodel:1543: 10.956570547950063 <- longitude -> 10.997814480657802
14:06:39 DEBUG opendrift.models.basemodel:1548: -8.145859718322754 <- z -> 0.0
14:06:39 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:39 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:39 DEBUG opendrift.models.physics_methods:1050: min: 0.173002, mean: 3.369443, max: 7.766444
14:06:39 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.173002, mean: 3.369443, max: 7.766444
14:06:39 DEBUG opendrift.models.basemodel:813: 28 elements hit coastline, moving back to water
14:06:39 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:39 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:06:39 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:39 DEBUG opendrift.models.physics_methods:828: Advecting 38 of 313 elements above 0.100m with wind-sheared ocean current (0.004049 m/s - 0.181784 m/s)
14:06:39 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:39 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:39 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07463981958492279
14:06:39 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:39 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:39 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:39 DEBUG opendrift.models.oceandrift:582: 35 elements penetrated seafloor, lifting up
14:06:39 DEBUG opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:39 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:39 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:39 DEBUG opendrift.models.oceandrift:582: 19 elements penetrated seafloor, lifting up
14:06:39 DEBUG opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:39 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:39 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:39 DEBUG opendrift.models.oceandrift:582: 13 elements penetrated seafloor, lifting up
14:06:39 DEBUG opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:39 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:39 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:39 DEBUG opendrift.models.oceandrift:582: 11 elements penetrated seafloor, lifting up
14:06:39 DEBUG opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:39 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:39 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:39 DEBUG opendrift.models.oceandrift:582: 14 elements penetrated seafloor, lifting up
14:06:39 DEBUG opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:39 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:39 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:39 DEBUG opendrift.models.oceandrift:582: 12 elements penetrated seafloor, lifting up
14:06:39 DEBUG opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:39 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:39 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:39 DEBUG opendrift.models.oceandrift:582: 11 elements penetrated seafloor, lifting up
14:06:39 DEBUG opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:39 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:39 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:39 DEBUG opendrift.models.oceandrift:582: 20 elements penetrated seafloor, lifting up
14:06:39 DEBUG opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:39 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:39 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:39 DEBUG opendrift.models.oceandrift:582: 23 elements penetrated seafloor, lifting up
14:06:39 DEBUG opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:39 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:39 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:39 DEBUG opendrift.models.oceandrift:582: 28 elements penetrated seafloor, lifting up
14:06:39 DEBUG opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:39 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:39 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:39 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:39 DEBUG opendrift.models.basemodel:2945: 313 active elements (0 deactivated)
14:06:39 DEBUG opendrift.models.basemodel:1658: to be seeded: 9687, already seeded 313
14:06:39 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:06:39 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:39 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:39 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:39 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:39 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:39 DEBUG opendrift.models.basemodel:1253: Data needed for 348 elements
14:06:39 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:39 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 15:00:00 (before)
2023-09-01 16:00:00 (after)
14:06:39 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 15:00:00) in space (linearNDFast)
14:06:39 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:39 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:39 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:39 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:39 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:39 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:39 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.59204 (min) 10.2217 (max)
14:06:39 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:39 DEBUG opendrift.models.basemodel:1527: 348 active elements
14:06:39 DEBUG opendrift.models.basemodel:1538: 59.14739690826961 <- latitude -> 59.169681308393706
14:06:39 DEBUG opendrift.models.basemodel:1543: 10.956374807134088 <- longitude -> 10.999402547315455
14:06:39 DEBUG opendrift.models.basemodel:1548: -8.436469137741499 <- z -> 0.0
14:06:39 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:39 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
14:06:39 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:06:39 INFO opendrift.models.basemodel:2882: 2023-09-01 15:36:21.121579 - step 10 of 216 - 348 active elements (0 deactivated)
14:06:39 DEBUG opendrift.models.basemodel:2888: 9652 elements scheduled.
14:06:39 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:06:39 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:39 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:39 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:39 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:39 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:39 DEBUG opendrift.models.basemodel:1253: Data needed for 348 elements
14:06:39 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:39 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:39 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:39 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:39 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:39 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:39 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:39 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:39 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:39 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:39 DEBUG opendrift.models.basemodel:1253: Data needed for 348 elements
14:06:39 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:39 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 15:00:00 (before)
2023-09-01 16:00:00 (after)
14:06:39 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:39 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:39 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:39 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:39 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:39 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:39 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 17x17x4) for time after (2023-09-01 16:00:00)
14:06:39 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 15:00:00) in space (linearNDFast)
14:06:39 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:39 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 16:00:00) in space (linearNDFast)
14:06:39 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 1
14:06:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 1
14:06:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 1
14:06:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 1
14:06:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 1
14:06:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 1
14:06:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 203 elements, expanding data 1
14:06:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:06:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 203 elements, expanding data 1
14:06:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:06:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 203 elements, expanding data 1
14:06:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:06:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 203 elements, expanding data 1
14:06:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:06:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 1
14:06:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 1
14:06:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 1
14:06:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 1
14:06:39 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 15:00:00, weight 0.39) and
after (2023-09-01 16:00:00, weight 0.61) in time
14:06:39 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.043635761174635 and -59.000608001320245 degrees.
14:06:39 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.043635761174635 and -59.000608001320245 degrees.
14:06:39 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:39 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:39 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:39 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:39 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:39 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:39 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.612989 (min) 1.09195 (max)
14:06:39 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.08319 (min) 0.320839 (max)
14:06:39 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -5.27851e-05 (min) 0.000287937 (max)
14:06:39 DEBUG opendrift.models.basemodel:1524: x_wind: -2.11389 (min) 10.3445 (max)
14:06:39 DEBUG opendrift.models.basemodel:1524: y_wind: -5.46343 (min) 5.28276 (max)
14:06:39 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:39 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:39 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:39 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:39 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:06:39 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:39 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:39 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.59204 (min) 10.2217 (max)
14:06:39 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:39 DEBUG opendrift.models.basemodel:1527: 348 active elements
14:06:39 DEBUG opendrift.models.basemodel:1538: 59.14739690826961 <- latitude -> 59.169681308393706
14:06:39 DEBUG opendrift.models.basemodel:1543: 10.956374807134088 <- longitude -> 10.999402547315455
14:06:39 DEBUG opendrift.models.basemodel:1548: -8.436469137741499 <- z -> 0.0
14:06:39 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:39 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:39 DEBUG opendrift.models.physics_methods:1050: min: 0.182488, mean: 3.681840, max: 8.842782
14:06:39 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.182488, mean: 3.681840, max: 8.842782
14:06:39 DEBUG opendrift.models.basemodel:813: 28 elements hit coastline, moving back to water
14:06:39 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:39 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:06:39 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:39 DEBUG opendrift.models.physics_methods:828: Advecting 35 of 348 elements above 0.100m with wind-sheared ocean current (0.022403 m/s - 0.198594 m/s)
14:06:39 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:39 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:39 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09676058904750823
14:06:39 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:39 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:39 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:39 DEBUG opendrift.models.oceandrift:582: 36 elements penetrated seafloor, lifting up
14:06:39 DEBUG opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:39 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:39 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:39 DEBUG opendrift.models.oceandrift:582: 21 elements penetrated seafloor, lifting up
14:06:39 DEBUG opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:39 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:39 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:39 DEBUG opendrift.models.oceandrift:582: 14 elements penetrated seafloor, lifting up
14:06:39 DEBUG opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:39 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:39 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:39 DEBUG opendrift.models.oceandrift:582: 16 elements penetrated seafloor, lifting up
14:06:39 DEBUG opendrift.models.oceandrift:582: 24 elements penetrated seafloor, lifting up
14:06:39 DEBUG opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:39 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:39 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:39 DEBUG opendrift.models.oceandrift:582: 22 elements penetrated seafloor, lifting up
14:06:39 DEBUG opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:39 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:39 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:39 DEBUG opendrift.models.oceandrift:582: 18 elements penetrated seafloor, lifting up
14:06:39 DEBUG opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:39 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:39 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:39 DEBUG opendrift.models.oceandrift:582: 19 elements penetrated seafloor, lifting up
14:06:39 DEBUG opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:39 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:39 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:39 DEBUG opendrift.models.oceandrift:582: 23 elements penetrated seafloor, lifting up
14:06:39 DEBUG opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:39 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:39 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:39 DEBUG opendrift.models.oceandrift:582: 28 elements penetrated seafloor, lifting up
14:06:39 DEBUG opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:39 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:39 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:39 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:39 DEBUG opendrift.models.basemodel:2945: 348 active elements (0 deactivated)
14:06:39 DEBUG opendrift.models.basemodel:1658: to be seeded: 9652, already seeded 348
14:06:39 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:06:39 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:39 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:39 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:39 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:39 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:39 DEBUG opendrift.models.basemodel:1253: Data needed for 382 elements
14:06:39 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:39 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 15:00:00 (before)
2023-09-01 16:00:00 (after)
14:06:39 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 15:00:00) in space (linearNDFast)
14:06:39 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:39 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:39 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:39 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:39 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:39 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:39 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.37859 (min) 10.4457 (max)
14:06:39 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:39 DEBUG opendrift.models.basemodel:1527: 382 active elements
14:06:39 DEBUG opendrift.models.basemodel:1538: 59.146281833162945 <- latitude -> 59.16984423800563
14:06:39 DEBUG opendrift.models.basemodel:1543: 10.954955193129686 <- longitude -> 10.998670847328421
14:06:39 DEBUG opendrift.models.basemodel:1548: -8.692142486572266 <- z -> 0.0
14:06:39 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:39 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
14:06:39 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:06:39 INFO opendrift.models.basemodel:2882: 2023-09-01 15:46:21.121579 - step 11 of 216 - 382 active elements (0 deactivated)
14:06:39 DEBUG opendrift.models.basemodel:2888: 9618 elements scheduled.
14:06:39 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:06:39 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:39 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:39 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:39 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:39 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:39 DEBUG opendrift.models.basemodel:1253: Data needed for 382 elements
14:06:39 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:39 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:39 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:39 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:39 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:39 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:39 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:39 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:39 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:39 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:39 DEBUG opendrift.models.basemodel:1253: Data needed for 382 elements
14:06:39 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:39 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 15:00:00 (before)
2023-09-01 16:00:00 (after)
14:06:40 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:40 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:40 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:40 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:40 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:40 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:40 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 17x18x4) for time after (2023-09-01 16:00:00)
14:06:40 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 15:00:00) in space (linearNDFast)
14:06:40 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:40 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 16:00:00) in space (linearNDFast)
14:06:40 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
14:06:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
14:06:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 1
14:06:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 1
14:06:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 1
14:06:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 1
14:06:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 204 elements, expanding data 1
14:06:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:06:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 204 elements, expanding data 1
14:06:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:06:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 204 elements, expanding data 1
14:06:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:06:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 204 elements, expanding data 1
14:06:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:06:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
14:06:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
14:06:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
14:06:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
14:06:40 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 15:00:00, weight 0.23) and
after (2023-09-01 16:00:00, weight 0.77) in time
14:06:40 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.04505535239997 and -59.001339695547536 degrees.
14:06:40 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.04505535239997 and -59.001339695547536 degrees.
14:06:40 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:40 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:40 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:40 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:40 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:40 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:40 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.628244 (min) 1.39168 (max)
14:06:40 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.880974 (min) 0.382596 (max)
14:06:40 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -2.85405e-05 (min) 0.000425473 (max)
14:06:40 DEBUG opendrift.models.basemodel:1524: x_wind: -2.8265 (min) 8.80585 (max)
14:06:40 DEBUG opendrift.models.basemodel:1524: y_wind: -6.15021 (min) 5.33181 (max)
14:06:40 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:40 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:40 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:40 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:40 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:06:40 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:40 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:40 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.37859 (min) 10.4457 (max)
14:06:40 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:40 DEBUG opendrift.models.basemodel:1527: 382 active elements
14:06:40 DEBUG opendrift.models.basemodel:1538: 59.146281833162945 <- latitude -> 59.16984423800563
14:06:40 DEBUG opendrift.models.basemodel:1543: 10.954955193129686 <- longitude -> 10.998670847328421
14:06:40 DEBUG opendrift.models.basemodel:1548: -8.61673355102539 <- z -> 0.0
14:06:40 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:40 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:40 DEBUG opendrift.models.physics_methods:1050: min: 0.175402, mean: 3.590255, max: 7.766889
14:06:40 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.175402, mean: 3.590255, max: 7.766889
14:06:40 DEBUG opendrift.models.basemodel:813: 34 elements hit coastline, moving back to water
14:06:40 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:06:40 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:06:40 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:40 DEBUG opendrift.models.physics_methods:828: Advecting 35 of 382 elements above 0.100m with wind-sheared ocean current (0.004106 m/s - 0.168220 m/s)
14:06:40 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:40 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:40 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.074648373612957
14:06:40 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:40 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:40 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:40 DEBUG opendrift.models.oceandrift:582: 30 elements penetrated seafloor, lifting up
14:06:40 DEBUG opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:40 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:40 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:40 DEBUG opendrift.models.oceandrift:582: 23 elements penetrated seafloor, lifting up
14:06:40 DEBUG opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:40 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:40 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:40 DEBUG opendrift.models.oceandrift:582: 29 elements penetrated seafloor, lifting up
14:06:40 DEBUG opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:40 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:40 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:40 DEBUG opendrift.models.oceandrift:582: 17 elements penetrated seafloor, lifting up
14:06:40 DEBUG opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:40 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:40 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:40 DEBUG opendrift.models.oceandrift:582: 29 elements penetrated seafloor, lifting up
14:06:40 DEBUG opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:40 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:40 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:40 DEBUG opendrift.models.oceandrift:582: 24 elements penetrated seafloor, lifting up
14:06:40 DEBUG opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:40 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:40 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:40 DEBUG opendrift.models.oceandrift:582: 33 elements penetrated seafloor, lifting up
14:06:40 DEBUG opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:40 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:40 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:40 DEBUG opendrift.models.oceandrift:582: 26 elements penetrated seafloor, lifting up
14:06:40 DEBUG opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:40 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:40 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:40 DEBUG opendrift.models.oceandrift:582: 22 elements penetrated seafloor, lifting up
14:06:40 DEBUG opendrift.models.oceandrift:582: 29 elements penetrated seafloor, lifting up
14:06:40 DEBUG opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:40 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:40 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:40 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:40 DEBUG opendrift.models.basemodel:2945: 382 active elements (0 deactivated)
14:06:40 DEBUG opendrift.models.basemodel:1658: to be seeded: 9618, already seeded 382
14:06:40 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:06:40 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:40 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:40 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:40 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:40 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:40 DEBUG opendrift.models.basemodel:1253: Data needed for 417 elements
14:06:40 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:40 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 15:00:00 (before)
2023-09-01 16:00:00 (after)
14:06:40 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 15:00:00) in space (linearNDFast)
14:06:40 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:40 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:40 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:40 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:40 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:40 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:40 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.59204 (min) 10.4333 (max)
14:06:40 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:40 DEBUG opendrift.models.basemodel:1527: 417 active elements
14:06:40 DEBUG opendrift.models.basemodel:1538: 59.14619363679434 <- latitude -> 59.16951898852412
14:06:40 DEBUG opendrift.models.basemodel:1543: 10.95258622662583 <- longitude -> 10.997045570822449
14:06:40 DEBUG opendrift.models.basemodel:1548: -10.445683479309082 <- z -> 0.0
14:06:40 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:40 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
14:06:40 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:06:40 INFO opendrift.models.basemodel:2882: 2023-09-01 15:56:21.121579 - step 12 of 216 - 417 active elements (0 deactivated)
14:06:40 DEBUG opendrift.models.basemodel:2888: 9583 elements scheduled.
14:06:40 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:06:40 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:40 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:40 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:40 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:40 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:40 DEBUG opendrift.models.basemodel:1253: Data needed for 417 elements
14:06:40 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:40 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:40 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:40 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:40 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:40 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:40 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:40 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:40 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:40 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:40 DEBUG opendrift.models.basemodel:1253: Data needed for 417 elements
14:06:40 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:40 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 15:00:00 (before)
2023-09-01 16:00:00 (after)
14:06:41 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:41 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:41 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:41 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:41 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:41 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:41 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 17x18x5) for time after (2023-09-01 16:00:00)
14:06:41 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 15:00:00) in space (linearNDFast)
14:06:41 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:41 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 16:00:00) in space (linearNDFast)
14:06:41 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
14:06:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
14:06:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 1
14:06:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 1
14:06:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 1
14:06:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 1
14:06:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 1
14:06:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 230 elements, expanding data 1
14:06:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:06:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 230 elements, expanding data 1
14:06:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:06:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 230 elements, expanding data 1
14:06:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:06:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 230 elements, expanding data 1
14:06:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:06:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 230 elements, expanding data 1
14:06:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:06:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
14:06:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
14:06:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
14:06:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
14:06:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
14:06:41 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 15:00:00, weight 0.06) and
after (2023-09-01 16:00:00, weight 0.94) in time
14:06:41 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.04742432403159 and -59.00296497176889 degrees.
14:06:41 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.04742432403159 and -59.00296497176889 degrees.
14:06:41 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:41 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:41 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:41 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:41 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:41 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:41 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.559727 (min) 1.34041 (max)
14:06:41 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.972048 (min) 0.369194 (max)
14:06:41 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -2.00076e-06 (min) 0.000339297 (max)
14:06:41 DEBUG opendrift.models.basemodel:1524: x_wind: -1.99459 (min) 11.0179 (max)
14:06:41 DEBUG opendrift.models.basemodel:1524: y_wind: -8.898 (min) 5.54832 (max)
14:06:41 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:41 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:41 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:41 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:41 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:06:41 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:41 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:41 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.59204 (min) 10.4333 (max)
14:06:41 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:41 DEBUG opendrift.models.basemodel:1527: 417 active elements
14:06:41 DEBUG opendrift.models.basemodel:1538: 59.14619363679434 <- latitude -> 59.16951898852412
14:06:41 DEBUG opendrift.models.basemodel:1543: 10.95258622662583 <- longitude -> 10.997045570822449
14:06:41 DEBUG opendrift.models.basemodel:1548: -10.433300018310547 <- z -> 0.0
14:06:41 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:41 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:41 DEBUG opendrift.models.physics_methods:1050: min: 0.319033, mean: 3.905024, max: 9.417080
14:06:41 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.319033, mean: 3.905024, max: 9.417080
14:06:41 DEBUG opendrift.models.basemodel:813: 39 elements hit coastline, moving back to water
14:06:41 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:06:41 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:06:41 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:41 DEBUG opendrift.models.physics_methods:828: Advecting 37 of 417 elements above 0.100m with wind-sheared ocean current (0.014109 m/s - 0.142732 m/s)
14:06:41 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:41 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:41 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10973646694810867
14:06:41 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:41 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:41 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:41 DEBUG opendrift.models.oceandrift:582: 42 elements penetrated seafloor, lifting up
14:06:41 DEBUG opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:41 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:41 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:41 DEBUG opendrift.models.oceandrift:582: 42 elements penetrated seafloor, lifting up
14:06:41 DEBUG opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
14:06:41 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:06:41 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
14:06:41 DEBUG opendrift.models.oceandrift:582: 34 elements penetrated seafloor, lifting up
14:06:41 DEBUG opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:41 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:41 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:41 DEBUG opendrift.models.oceandrift:582: 40 elements penetrated seafloor, lifting up
14:06:41 DEBUG opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:41 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:41 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:41 DEBUG opendrift.models.oceandrift:582: 32 elements penetrated seafloor, lifting up
14:06:41 DEBUG opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:41 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:41 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:41 DEBUG opendrift.models.oceandrift:582: 18 elements penetrated seafloor, lifting up
14:06:41 DEBUG opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:41 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:41 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:41 DEBUG opendrift.models.oceandrift:582: 28 elements penetrated seafloor, lifting up
14:06:41 DEBUG opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:41 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:41 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:41 DEBUG opendrift.models.oceandrift:582: 27 elements penetrated seafloor, lifting up
14:06:41 DEBUG opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:41 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:41 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:41 DEBUG opendrift.models.oceandrift:582: 20 elements penetrated seafloor, lifting up
14:06:41 DEBUG opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:41 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:41 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:41 DEBUG opendrift.models.oceandrift:582: 27 elements penetrated seafloor, lifting up
14:06:41 DEBUG opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:41 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:41 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:41 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:41 DEBUG opendrift.models.basemodel:2945: 417 active elements (0 deactivated)
14:06:41 DEBUG opendrift.models.basemodel:1658: to be seeded: 9583, already seeded 417
14:06:41 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:06:41 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:41 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:41 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:41 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:41 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:41 DEBUG opendrift.models.basemodel:1253: Data needed for 452 elements
14:06:41 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:41 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 16:00:00 (before)
2023-09-01 17:00:00 (after)
14:06:41 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 16:00:00) in space (linearNDFast)
14:06:41 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:41 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:41 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:41 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:41 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:41 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:41 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.54797 (min) 10.4333 (max)
14:06:41 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:41 DEBUG opendrift.models.basemodel:1527: 452 active elements
14:06:41 DEBUG opendrift.models.basemodel:1538: 59.14564998142515 <- latitude -> 59.17031245227833
14:06:41 DEBUG opendrift.models.basemodel:1543: 10.946920992621898 <- longitude -> 10.997945058633775
14:06:41 DEBUG opendrift.models.basemodel:1548: -10.423300018310547 <- z -> 0.0
14:06:41 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:41 DEBUG opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
14:06:41 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:06:41 INFO opendrift.models.basemodel:2882: 2023-09-01 16:06:21.121579 - step 13 of 216 - 452 active elements (0 deactivated)
14:06:41 DEBUG opendrift.models.basemodel:2888: 9548 elements scheduled.
14:06:41 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:06:41 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:41 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:41 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:41 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:41 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:41 DEBUG opendrift.models.basemodel:1253: Data needed for 452 elements
14:06:41 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:41 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:41 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:41 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:41 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:41 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:41 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:41 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:41 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:41 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:41 DEBUG opendrift.models.basemodel:1253: Data needed for 452 elements
14:06:41 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:41 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 16:00:00 (before)
2023-09-01 17:00:00 (after)
14:06:42 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:42 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:42 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:42 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:42 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:42 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:42 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 17x18x5) for time after (2023-09-01 17:00:00)
14:06:42 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 16:00:00) in space (linearNDFast)
14:06:42 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:42 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 17:00:00) in space (linearNDFast)
14:06:42 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 1
14:06:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 1
14:06:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 1
14:06:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 1
14:06:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 1
14:06:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 1
14:06:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 1
14:06:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 243 elements, expanding data 1
14:06:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:06:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 243 elements, expanding data 1
14:06:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:06:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 243 elements, expanding data 1
14:06:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:06:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 243 elements, expanding data 1
14:06:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:06:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 243 elements, expanding data 1
14:06:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:06:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 1
14:06:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 1
14:06:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 1
14:06:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 1
14:06:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 1
14:06:42 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 16:00:00, weight 0.89) and
after (2023-09-01 17:00:00, weight 0.11) in time
14:06:42 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05308955674391 and -59.00206549823316 degrees.
14:06:42 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05308955674391 and -59.00206549823316 degrees.
14:06:42 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:42 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:42 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:42 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:42 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:42 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:42 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.521946 (min) 1.12013 (max)
14:06:42 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.863237 (min) 0.440207 (max)
14:06:42 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -7.63127e-05 (min) 0.000297636 (max)
14:06:42 DEBUG opendrift.models.basemodel:1524: x_wind: -2.21448 (min) 10.2505 (max)
14:06:42 DEBUG opendrift.models.basemodel:1524: y_wind: -5.91734 (min) 5.84544 (max)
14:06:42 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:42 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:42 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:42 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:42 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:06:42 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:42 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:42 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.54797 (min) 10.4333 (max)
14:06:42 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:42 DEBUG opendrift.models.basemodel:1527: 452 active elements
14:06:42 DEBUG opendrift.models.basemodel:1538: 59.14564998142515 <- latitude -> 59.17031245227833
14:06:42 DEBUG opendrift.models.basemodel:1543: 10.946920992621898 <- longitude -> 10.997945058633775
14:06:42 DEBUG opendrift.models.basemodel:1548: -10.423300018310547 <- z -> 0.0
14:06:42 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:42 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:42 DEBUG opendrift.models.physics_methods:1050: min: 0.171492, mean: 4.128481, max: 8.760392
14:06:42 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.171492, mean: 4.128481, max: 8.760392
14:06:42 DEBUG opendrift.models.basemodel:813: 48 elements hit coastline, moving back to water
14:06:42 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:06:42 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:06:42 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:42 DEBUG opendrift.models.physics_methods:828: Advecting 36 of 452 elements above 0.100m with wind-sheared ocean current (0.008442 m/s - 0.156862 m/s)
14:06:42 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:42 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:42 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09496599104221344
14:06:42 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:42 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:42 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:42 DEBUG opendrift.models.oceandrift:582: 43 elements penetrated seafloor, lifting up
14:06:42 DEBUG opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:42 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:42 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:42 DEBUG opendrift.models.oceandrift:582: 33 elements penetrated seafloor, lifting up
14:06:42 DEBUG opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:42 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:42 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:42 DEBUG opendrift.models.oceandrift:582: 29 elements penetrated seafloor, lifting up
14:06:42 DEBUG opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:42 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:42 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:42 DEBUG opendrift.models.oceandrift:582: 37 elements penetrated seafloor, lifting up
14:06:42 DEBUG opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:42 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:42 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:42 DEBUG opendrift.models.oceandrift:582: 38 elements penetrated seafloor, lifting up
14:06:42 DEBUG opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:42 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:42 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:42 DEBUG opendrift.models.oceandrift:582: 33 elements penetrated seafloor, lifting up
14:06:42 DEBUG opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:42 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:42 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:42 DEBUG opendrift.models.oceandrift:582: 36 elements penetrated seafloor, lifting up
14:06:42 DEBUG opendrift.models.oceandrift:582: 34 elements penetrated seafloor, lifting up
14:06:42 DEBUG opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:42 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:42 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:42 DEBUG opendrift.models.oceandrift:582: 44 elements penetrated seafloor, lifting up
14:06:42 DEBUG opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:42 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:42 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:42 DEBUG opendrift.models.oceandrift:582: 33 elements penetrated seafloor, lifting up
14:06:42 DEBUG opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:42 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:42 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:42 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:42 DEBUG opendrift.models.basemodel:2945: 452 active elements (0 deactivated)
14:06:42 DEBUG opendrift.models.basemodel:1658: to be seeded: 9548, already seeded 452
14:06:42 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:06:42 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:42 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:42 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:42 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:42 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:42 DEBUG opendrift.models.basemodel:1253: Data needed for 487 elements
14:06:42 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:42 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 16:00:00 (before)
2023-09-01 17:00:00 (after)
14:06:42 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 16:00:00) in space (linearNDFast)
14:06:42 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:42 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:42 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:42 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:42 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:42 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:42 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.56173 (min) 10.5375 (max)
14:06:42 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:42 DEBUG opendrift.models.basemodel:1527: 487 active elements
14:06:42 DEBUG opendrift.models.basemodel:1538: 59.144897077608924 <- latitude -> 59.169899207970914
14:06:42 DEBUG opendrift.models.basemodel:1543: 10.951438938207707 <- longitude -> 10.999737735270449
14:06:42 DEBUG opendrift.models.basemodel:1548: -10.211332218661333 <- z -> 0.0
14:06:42 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:42 DEBUG opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
14:06:42 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:06:42 INFO opendrift.models.basemodel:2882: 2023-09-01 16:16:21.121579 - step 14 of 216 - 487 active elements (0 deactivated)
14:06:42 DEBUG opendrift.models.basemodel:2888: 9513 elements scheduled.
14:06:42 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:06:42 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:42 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:42 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:42 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:42 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:42 DEBUG opendrift.models.basemodel:1253: Data needed for 487 elements
14:06:42 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:42 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:42 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:42 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:42 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:42 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:42 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:42 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:42 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:42 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:42 DEBUG opendrift.models.basemodel:1253: Data needed for 487 elements
14:06:42 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:42 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 16:00:00 (before)
2023-09-01 17:00:00 (after)
14:06:43 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:43 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:43 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:43 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:43 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:43 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:43 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 17x18x5) for time after (2023-09-01 17:00:00)
14:06:43 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 16:00:00) in space (linearNDFast)
14:06:43 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:43 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 17:00:00) in space (linearNDFast)
14:06:43 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 1
14:06:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 1
14:06:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 1
14:06:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 1
14:06:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 1
14:06:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 1
14:06:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 1
14:06:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 268 elements, expanding data 1
14:06:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:06:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 268 elements, expanding data 1
14:06:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:06:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 268 elements, expanding data 1
14:06:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:06:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 268 elements, expanding data 1
14:06:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:06:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 268 elements, expanding data 1
14:06:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:06:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 1
14:06:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 1
14:06:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 1
14:06:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 1
14:06:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 1
14:06:43 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 16:00:00, weight 0.73) and
after (2023-09-01 17:00:00, weight 0.27) in time
14:06:43 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.04857161733372 and -59.00027281513057 degrees.
14:06:43 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.04857161733372 and -59.00027281513057 degrees.
14:06:43 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:43 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:43 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:43 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:43 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:43 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:43 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.492286 (min) 1.13146 (max)
14:06:43 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.9448 (min) 0.459505 (max)
14:06:43 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -6.91054e-05 (min) 0.000331746 (max)
14:06:43 DEBUG opendrift.models.basemodel:1524: x_wind: -1.18252 (min) 11.0822 (max)
14:06:43 DEBUG opendrift.models.basemodel:1524: y_wind: -5.13908 (min) 6.76083 (max)
14:06:43 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:43 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:43 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:43 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:43 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:06:43 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:43 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:43 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.56173 (min) 10.5375 (max)
14:06:43 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:43 DEBUG opendrift.models.basemodel:1527: 487 active elements
14:06:43 DEBUG opendrift.models.basemodel:1538: 59.144897077608924 <- latitude -> 59.169899207970914
14:06:43 DEBUG opendrift.models.basemodel:1543: 10.951438938207707 <- longitude -> 10.999737735270449
14:06:43 DEBUG opendrift.models.basemodel:1548: -10.211332218661333 <- z -> 0.0
14:06:43 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:43 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:43 DEBUG opendrift.models.physics_methods:1050: min: 0.357869, mean: 4.211514, max: 9.533669
14:06:43 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.357869, mean: 4.211514, max: 9.533669
14:06:43 DEBUG opendrift.models.basemodel:813: 39 elements hit coastline, moving back to water
14:06:43 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:43 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:06:43 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:43 DEBUG opendrift.models.physics_methods:828: Advecting 35 of 487 elements above 0.100m with wind-sheared ocean current (0.040367 m/s - 0.202311 m/s)
14:06:43 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:43 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:43 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.1124704013982582
14:06:43 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:43 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:43 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:43 DEBUG opendrift.models.oceandrift:582: 47 elements penetrated seafloor, lifting up
14:06:43 DEBUG opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
14:06:43 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:06:43 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
14:06:43 DEBUG opendrift.models.oceandrift:582: 35 elements penetrated seafloor, lifting up
14:06:43 DEBUG opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:43 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:43 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:43 DEBUG opendrift.models.oceandrift:582: 43 elements penetrated seafloor, lifting up
14:06:43 DEBUG opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:43 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:43 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:43 DEBUG opendrift.models.oceandrift:582: 38 elements penetrated seafloor, lifting up
14:06:43 DEBUG opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:43 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:43 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:43 DEBUG opendrift.models.oceandrift:582: 42 elements penetrated seafloor, lifting up
14:06:43 DEBUG opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:43 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:43 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:43 DEBUG opendrift.models.oceandrift:582: 37 elements penetrated seafloor, lifting up
14:06:43 DEBUG opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:43 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:43 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:43 DEBUG opendrift.models.oceandrift:582: 32 elements penetrated seafloor, lifting up
14:06:43 DEBUG opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:43 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:43 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:43 DEBUG opendrift.models.oceandrift:582: 46 elements penetrated seafloor, lifting up
14:06:43 DEBUG opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:43 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:43 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:43 DEBUG opendrift.models.oceandrift:582: 39 elements penetrated seafloor, lifting up
14:06:43 DEBUG opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:43 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:43 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:43 DEBUG opendrift.models.oceandrift:582: 36 elements penetrated seafloor, lifting up
14:06:43 DEBUG opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:43 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:43 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:43 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:43 DEBUG opendrift.models.basemodel:2945: 487 active elements (0 deactivated)
14:06:43 DEBUG opendrift.models.basemodel:1658: to be seeded: 9513, already seeded 487
14:06:43 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:06:43 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:43 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:43 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:43 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:43 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:43 DEBUG opendrift.models.basemodel:1253: Data needed for 521 elements
14:06:43 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:43 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 16:00:00 (before)
2023-09-01 17:00:00 (after)
14:06:43 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 16:00:00) in space (linearNDFast)
14:06:43 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:43 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:43 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:43 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:43 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:43 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:43 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.586 (min) 10.9521 (max)
14:06:43 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:43 DEBUG opendrift.models.basemodel:1527: 521 active elements
14:06:43 DEBUG opendrift.models.basemodel:1538: 59.142910574372 <- latitude -> 59.17001172448077
14:06:43 DEBUG opendrift.models.basemodel:1543: 10.95258622662583 <- longitude -> 11.000194587275002
14:06:43 DEBUG opendrift.models.basemodel:1548: -10.520138534814501 <- z -> 0.0
14:06:43 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:43 DEBUG opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
14:06:43 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:06:43 INFO opendrift.models.basemodel:2882: 2023-09-01 16:26:21.121579 - step 15 of 216 - 521 active elements (0 deactivated)
14:06:43 DEBUG opendrift.models.basemodel:2888: 9479 elements scheduled.
14:06:43 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:06:43 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:43 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:43 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:43 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:43 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:43 DEBUG opendrift.models.basemodel:1253: Data needed for 521 elements
14:06:43 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:43 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:43 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:43 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:43 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:43 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:43 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:43 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:43 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:43 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:43 DEBUG opendrift.models.basemodel:1253: Data needed for 521 elements
14:06:43 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:43 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 16:00:00 (before)
2023-09-01 17:00:00 (after)
14:06:44 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:44 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:44 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:44 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:44 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:44 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:44 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 17x18x5) for time after (2023-09-01 17:00:00)
14:06:44 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 16:00:00) in space (linearNDFast)
14:06:44 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:44 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 17:00:00) in space (linearNDFast)
14:06:44 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 1
14:06:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 1
14:06:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 1
14:06:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 1
14:06:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 1
14:06:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 1
14:06:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 1
14:06:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 277 elements, expanding data 1
14:06:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:06:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 277 elements, expanding data 1
14:06:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:06:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 277 elements, expanding data 1
14:06:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:06:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 277 elements, expanding data 1
14:06:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:06:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 277 elements, expanding data 1
14:06:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:06:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 1
14:06:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 1
14:06:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 1
14:06:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 1
14:06:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 1
14:06:44 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 16:00:00, weight 0.56) and
after (2023-09-01 17:00:00, weight 0.44) in time
14:06:44 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.04742432403159 and -58.99981595827792 degrees.
14:06:44 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.04742432403159 and -58.99981595827792 degrees.
14:06:44 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:44 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:44 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:44 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:44 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:44 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:44 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.637573 (min) 1.1638 (max)
14:06:44 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.87822 (min) 0.509859 (max)
14:06:44 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000100545 (min) 0.00029944 (max)
14:06:44 DEBUG opendrift.models.basemodel:1524: x_wind: -1.82564 (min) 11.0875 (max)
14:06:44 DEBUG opendrift.models.basemodel:1524: y_wind: -5.6986 (min) 6.52684 (max)
14:06:44 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:44 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:44 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:44 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:44 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:06:44 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:44 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:44 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.586 (min) 10.9521 (max)
14:06:44 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:44 DEBUG opendrift.models.basemodel:1527: 521 active elements
14:06:44 DEBUG opendrift.models.basemodel:1538: 59.142910574372 <- latitude -> 59.17001172448077
14:06:44 DEBUG opendrift.models.basemodel:1543: 10.95258622662583 <- longitude -> 11.000194587275002
14:06:44 DEBUG opendrift.models.basemodel:1548: -10.520138534814501 <- z -> 0.0
14:06:44 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:44 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:44 DEBUG opendrift.models.physics_methods:1050: min: 0.277496, mean: 4.141616, max: 9.752912
14:06:44 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.277496, mean: 4.141616, max: 9.752912
14:06:44 DEBUG opendrift.models.basemodel:813: 48 elements hit coastline, moving back to water
14:06:44 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:06:44 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:06:44 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:44 DEBUG opendrift.models.physics_methods:828: Advecting 35 of 521 elements above 0.100m with wind-sheared ocean current (0.017089 m/s - 0.177293 m/s)
14:06:44 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:44 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:44 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.11770258872945785
14:06:44 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:44 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:44 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:44 DEBUG opendrift.models.oceandrift:582: 62 elements penetrated seafloor, lifting up
14:06:44 DEBUG opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:44 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:44 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:44 DEBUG opendrift.models.oceandrift:582: 41 elements penetrated seafloor, lifting up
14:06:44 DEBUG opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
14:06:44 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
14:06:44 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
14:06:44 DEBUG opendrift.models.oceandrift:582: 41 elements penetrated seafloor, lifting up
14:06:44 DEBUG opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:44 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:44 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:44 DEBUG opendrift.models.oceandrift:582: 31 elements penetrated seafloor, lifting up
14:06:44 DEBUG opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:44 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:44 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:44 DEBUG opendrift.models.oceandrift:582: 41 elements penetrated seafloor, lifting up
14:06:44 DEBUG opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:44 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:44 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:44 DEBUG opendrift.models.oceandrift:582: 33 elements penetrated seafloor, lifting up
14:06:44 DEBUG opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:44 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:44 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:44 DEBUG opendrift.models.oceandrift:582: 45 elements penetrated seafloor, lifting up
14:06:44 DEBUG opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:44 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:44 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:44 DEBUG opendrift.models.oceandrift:582: 40 elements penetrated seafloor, lifting up
14:06:44 DEBUG opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:44 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:44 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:44 DEBUG opendrift.models.oceandrift:582: 51 elements penetrated seafloor, lifting up
14:06:44 DEBUG opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:44 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:44 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:44 DEBUG opendrift.models.oceandrift:582: 48 elements penetrated seafloor, lifting up
14:06:44 DEBUG opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:44 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:44 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:44 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:44 DEBUG opendrift.models.basemodel:2945: 521 active elements (0 deactivated)
14:06:44 DEBUG opendrift.models.basemodel:1658: to be seeded: 9479, already seeded 521
14:06:44 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:06:44 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:44 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:44 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:44 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:44 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:44 DEBUG opendrift.models.basemodel:1253: Data needed for 556 elements
14:06:44 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:44 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 16:00:00 (before)
2023-09-01 17:00:00 (after)
14:06:44 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 16:00:00) in space (linearNDFast)
14:06:44 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:44 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:44 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:44 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:44 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:44 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:44 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.38104 (min) 10.8145 (max)
14:06:44 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:44 DEBUG opendrift.models.basemodel:1527: 556 active elements
14:06:44 DEBUG opendrift.models.basemodel:1538: 59.14358693473479 <- latitude -> 59.169193267822266
14:06:44 DEBUG opendrift.models.basemodel:1543: 10.952586226625833 <- longitude -> 11.00513211401608
14:06:44 DEBUG opendrift.models.basemodel:1548: -9.46933533864721 <- z -> 0.0
14:06:44 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:44 DEBUG opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
14:06:44 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:06:44 INFO opendrift.models.basemodel:2882: 2023-09-01 16:36:21.121579 - step 16 of 216 - 556 active elements (0 deactivated)
14:06:44 DEBUG opendrift.models.basemodel:2888: 9444 elements scheduled.
14:06:44 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:06:44 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:44 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:44 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:44 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:44 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:44 DEBUG opendrift.models.basemodel:1253: Data needed for 556 elements
14:06:44 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:44 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:44 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:44 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:44 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:44 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:44 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:44 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:44 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:44 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:44 DEBUG opendrift.models.basemodel:1253: Data needed for 556 elements
14:06:44 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:44 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 16:00:00 (before)
2023-09-01 17:00:00 (after)
14:06:45 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:45 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:45 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:45 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:45 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:45 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:45 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 17x18x4) for time after (2023-09-01 17:00:00)
14:06:45 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 16:00:00) in space (linearNDFast)
14:06:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:45 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 17:00:00) in space (linearNDFast)
14:06:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 1
14:06:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 1
14:06:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 60 elements, expanding data 1
14:06:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 60 elements, expanding data 1
14:06:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 60 elements, expanding data 1
14:06:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 60 elements, expanding data 1
14:06:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 285 elements, expanding data 1
14:06:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:06:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 285 elements, expanding data 1
14:06:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:06:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 285 elements, expanding data 1
14:06:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:06:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 285 elements, expanding data 1
14:06:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:06:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 1
14:06:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 1
14:06:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 1
14:06:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 1
14:06:45 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 16:00:00, weight 0.39) and
after (2023-09-01 17:00:00, weight 0.61) in time
14:06:45 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.04742432403159 and -58.994878433731934 degrees.
14:06:45 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.04742432403159 and -58.994878433731934 degrees.
14:06:45 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:45 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:45 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:45 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:45 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:45 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:45 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.524796 (min) 1.135 (max)
14:06:45 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.0495 (min) 0.478093 (max)
14:06:45 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -6.4207e-05 (min) 0.000352832 (max)
14:06:45 DEBUG opendrift.models.basemodel:1524: x_wind: -1.81655 (min) 9.13625 (max)
14:06:45 DEBUG opendrift.models.basemodel:1524: y_wind: -5.40572 (min) 8.25121 (max)
14:06:45 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:45 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:45 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:45 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:45 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:06:45 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:45 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:45 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.38104 (min) 10.8145 (max)
14:06:45 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:45 DEBUG opendrift.models.basemodel:1527: 556 active elements
14:06:45 DEBUG opendrift.models.basemodel:1538: 59.14358693473479 <- latitude -> 59.169193267822266
14:06:45 DEBUG opendrift.models.basemodel:1543: 10.952586226625833 <- longitude -> 11.00513211401608
14:06:45 DEBUG opendrift.models.basemodel:1548: -9.46933533864721 <- z -> 0.0
14:06:45 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:45 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:45 DEBUG opendrift.models.physics_methods:1050: min: 0.175330, mean: 4.017693, max: 8.204573
14:06:45 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.175330, mean: 4.017693, max: 8.204573
14:06:45 DEBUG opendrift.models.basemodel:813: 42 elements hit coastline, moving back to water
14:06:45 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:06:45 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:06:45 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:45 DEBUG opendrift.models.physics_methods:828: Advecting 37 of 556 elements above 0.100m with wind-sheared ocean current (0.009133 m/s - 0.173789 m/s)
14:06:45 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:45 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:45 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.0832981996990013
14:06:45 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:45 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:45 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:45 DEBUG opendrift.models.oceandrift:582: 42 elements penetrated seafloor, lifting up
14:06:45 DEBUG opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:45 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:45 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:45 DEBUG opendrift.models.oceandrift:582: 44 elements penetrated seafloor, lifting up
14:06:45 DEBUG opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:45 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:45 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:45 DEBUG opendrift.models.oceandrift:582: 51 elements penetrated seafloor, lifting up
14:06:45 DEBUG opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:45 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:45 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:45 DEBUG opendrift.models.oceandrift:582: 49 elements penetrated seafloor, lifting up
14:06:45 DEBUG opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:45 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:45 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:45 DEBUG opendrift.models.oceandrift:582: 41 elements penetrated seafloor, lifting up
14:06:45 DEBUG opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
14:06:45 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:06:45 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
14:06:45 DEBUG opendrift.models.oceandrift:582: 50 elements penetrated seafloor, lifting up
14:06:45 DEBUG opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:45 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:45 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:45 DEBUG opendrift.models.oceandrift:582: 47 elements penetrated seafloor, lifting up
14:06:45 DEBUG opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:45 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:45 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:45 DEBUG opendrift.models.oceandrift:582: 47 elements penetrated seafloor, lifting up
14:06:45 DEBUG opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:45 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:45 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:45 DEBUG opendrift.models.oceandrift:582: 43 elements penetrated seafloor, lifting up
14:06:45 DEBUG opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
14:06:45 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:06:45 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
14:06:45 DEBUG opendrift.models.oceandrift:582: 38 elements penetrated seafloor, lifting up
14:06:45 DEBUG opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:45 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:45 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:45 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:45 DEBUG opendrift.models.basemodel:2945: 556 active elements (0 deactivated)
14:06:45 DEBUG opendrift.models.basemodel:1658: to be seeded: 9444, already seeded 556
14:06:45 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:06:45 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:45 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:45 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:45 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:45 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:45 DEBUG opendrift.models.basemodel:1253: Data needed for 591 elements
14:06:45 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:45 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 16:00:00 (before)
2023-09-01 17:00:00 (after)
14:06:45 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 16:00:00) in space (linearNDFast)
14:06:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:45 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:45 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:45 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:45 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:45 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:45 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.59204 (min) 11.0416 (max)
14:06:45 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:45 DEBUG opendrift.models.basemodel:1527: 591 active elements
14:06:45 DEBUG opendrift.models.basemodel:1538: 59.142392393488436 <- latitude -> 59.169650743819766
14:06:45 DEBUG opendrift.models.basemodel:1543: 10.951268185913218 <- longitude -> 11.00474671376016
14:06:45 DEBUG opendrift.models.basemodel:1548: -9.74244104291133 <- z -> 0.0
14:06:45 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:45 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
14:06:45 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:06:45 INFO opendrift.models.basemodel:2882: 2023-09-01 16:46:21.121579 - step 17 of 216 - 591 active elements (0 deactivated)
14:06:45 DEBUG opendrift.models.basemodel:2888: 9409 elements scheduled.
14:06:45 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:06:45 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:45 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:45 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:45 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:45 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:45 DEBUG opendrift.models.basemodel:1253: Data needed for 591 elements
14:06:45 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:45 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:45 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:45 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:45 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:45 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:45 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:45 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:45 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:45 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:45 DEBUG opendrift.models.basemodel:1253: Data needed for 591 elements
14:06:45 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:45 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 16:00:00 (before)
2023-09-01 17:00:00 (after)
14:06:46 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:46 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:46 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:46 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:46 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:46 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:46 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 17x18x4) for time after (2023-09-01 17:00:00)
14:06:46 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 16:00:00) in space (linearNDFast)
14:06:46 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:46 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 17:00:00) in space (linearNDFast)
14:06:46 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 57 elements, expanding data 1
14:06:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 57 elements, expanding data 1
14:06:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 1
14:06:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 1
14:06:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 1
14:06:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 1
14:06:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 296 elements, expanding data 1
14:06:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:06:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 296 elements, expanding data 1
14:06:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:06:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 296 elements, expanding data 1
14:06:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:06:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 296 elements, expanding data 1
14:06:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:06:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 57 elements, expanding data 1
14:06:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 57 elements, expanding data 1
14:06:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 57 elements, expanding data 1
14:06:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 57 elements, expanding data 1
14:06:46 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 16:00:00, weight 0.23) and
after (2023-09-01 17:00:00, weight 0.77) in time
14:06:46 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.04874236379355 and -58.99526383108535 degrees.
14:06:46 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.04874236379355 and -58.99526383108535 degrees.
14:06:46 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:46 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:46 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:46 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:46 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:46 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:46 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.626365 (min) 1.20157 (max)
14:06:46 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.902996 (min) 0.595549 (max)
14:06:46 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000113764 (min) 0.000271444 (max)
14:06:46 DEBUG opendrift.models.basemodel:1524: x_wind: -2.87953 (min) 9.95491 (max)
14:06:46 DEBUG opendrift.models.basemodel:1524: y_wind: -4.49375 (min) 6.42084 (max)
14:06:46 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:46 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:46 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:46 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:46 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:06:46 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:46 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:46 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.59204 (min) 11.0416 (max)
14:06:46 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:46 DEBUG opendrift.models.basemodel:1527: 591 active elements
14:06:46 DEBUG opendrift.models.basemodel:1538: 59.142392393488436 <- latitude -> 59.169650743819766
14:06:46 DEBUG opendrift.models.basemodel:1543: 10.951268185913218 <- longitude -> 11.00474671376016
14:06:46 DEBUG opendrift.models.basemodel:1548: -9.74244104291133 <- z -> 0.0
14:06:46 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:46 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:46 DEBUG opendrift.models.physics_methods:1050: min: 0.469084, mean: 3.986324, max: 8.520491
14:06:46 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.469084, mean: 3.986324, max: 8.520491
14:06:46 DEBUG opendrift.models.basemodel:813: 48 elements hit coastline, moving back to water
14:06:46 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:46 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:06:46 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:46 DEBUG opendrift.models.physics_methods:828: Advecting 37 of 591 elements above 0.100m with wind-sheared ocean current (0.013831 m/s - 0.155075 m/s)
14:06:46 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:46 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:46 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08983618721683502
14:06:46 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:46 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:46 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:46 DEBUG opendrift.models.oceandrift:582: 58 elements penetrated seafloor, lifting up
14:06:46 DEBUG opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:46 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:46 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:46 DEBUG opendrift.models.oceandrift:582: 51 elements penetrated seafloor, lifting up
14:06:46 DEBUG opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
14:06:46 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
14:06:46 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
14:06:46 DEBUG opendrift.models.oceandrift:582: 45 elements penetrated seafloor, lifting up
14:06:46 DEBUG opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
14:06:46 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:06:46 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
14:06:46 DEBUG opendrift.models.oceandrift:582: 45 elements penetrated seafloor, lifting up
14:06:46 DEBUG opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:46 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:46 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:46 DEBUG opendrift.models.oceandrift:582: 48 elements penetrated seafloor, lifting up
14:06:46 DEBUG opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:06:46 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:06:46 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:06:46 DEBUG opendrift.models.oceandrift:582: 45 elements penetrated seafloor, lifting up
14:06:46 DEBUG opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:06:46 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:06:46 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:06:46 DEBUG opendrift.models.oceandrift:582: 37 elements penetrated seafloor, lifting up
14:06:46 DEBUG opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:46 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:46 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:46 DEBUG opendrift.models.oceandrift:582: 41 elements penetrated seafloor, lifting up
14:06:46 DEBUG opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:46 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:46 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:46 DEBUG opendrift.models.oceandrift:582: 42 elements penetrated seafloor, lifting up
14:06:46 DEBUG opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:46 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:46 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:46 DEBUG opendrift.models.oceandrift:582: 51 elements penetrated seafloor, lifting up
14:06:46 DEBUG opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:46 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:46 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:46 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:46 DEBUG opendrift.models.basemodel:2945: 591 active elements (0 deactivated)
14:06:46 DEBUG opendrift.models.basemodel:1658: to be seeded: 9409, already seeded 591
14:06:46 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:06:46 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:46 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:46 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:46 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:46 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:46 DEBUG opendrift.models.basemodel:1253: Data needed for 625 elements
14:06:46 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:46 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 16:00:00 (before)
2023-09-01 17:00:00 (after)
14:06:46 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 16:00:00) in space (linearNDFast)
14:06:46 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:46 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:46 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:46 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:46 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:46 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:46 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.93993 (min) 11.3752 (max)
14:06:46 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:46 DEBUG opendrift.models.basemodel:1527: 625 active elements
14:06:46 DEBUG opendrift.models.basemodel:1538: 59.14048419731914 <- latitude -> 59.1710929167073
14:06:46 DEBUG opendrift.models.basemodel:1543: 10.952825334021503 <- longitude -> 11.008656708280903
14:06:46 DEBUG opendrift.models.basemodel:1548: -9.676827663323397 <- z -> 0.0
14:06:46 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:46 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
14:06:46 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:06:46 INFO opendrift.models.basemodel:2882: 2023-09-01 16:56:21.121579 - step 18 of 216 - 625 active elements (0 deactivated)
14:06:46 DEBUG opendrift.models.basemodel:2888: 9375 elements scheduled.
14:06:46 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:06:46 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:46 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:46 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:46 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:46 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:46 DEBUG opendrift.models.basemodel:1253: Data needed for 625 elements
14:06:46 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:46 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:46 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:46 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:46 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:46 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:46 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:46 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:46 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:46 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:46 DEBUG opendrift.models.basemodel:1253: Data needed for 625 elements
14:06:46 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:46 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 16:00:00 (before)
2023-09-01 17:00:00 (after)
14:06:46 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:46 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:46 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:46 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:46 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:46 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:46 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 17x18x4) for time after (2023-09-01 17:00:00)
14:06:46 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 16:00:00) in space (linearNDFast)
14:06:46 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:46 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 17:00:00) in space (linearNDFast)
14:06:46 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 56 elements, expanding data 1
14:06:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 56 elements, expanding data 1
14:06:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 1
14:06:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 1
14:06:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 1
14:06:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 1
14:06:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 304 elements, expanding data 1
14:06:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:06:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 304 elements, expanding data 1
14:06:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:06:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 304 elements, expanding data 1
14:06:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:06:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 304 elements, expanding data 1
14:06:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:06:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 56 elements, expanding data 1
14:06:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 56 elements, expanding data 1
14:06:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 56 elements, expanding data 1
14:06:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 56 elements, expanding data 1
14:06:46 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 16:00:00, weight 0.06) and
after (2023-09-01 17:00:00, weight 0.94) in time
14:06:46 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.0471852224596 and -58.991353840994115 degrees.
14:06:46 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.0471852224596 and -58.991353840994115 degrees.
14:06:46 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:46 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:46 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:46 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:46 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:46 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:46 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.597386 (min) 1.27404 (max)
14:06:46 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.15051 (min) 0.379282 (max)
14:06:46 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -6.97708e-05 (min) 0.000442375 (max)
14:06:46 DEBUG opendrift.models.basemodel:1524: x_wind: -1.05513 (min) 10.3549 (max)
14:06:46 DEBUG opendrift.models.basemodel:1524: y_wind: -4.77212 (min) 6.40346 (max)
14:06:46 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:46 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:46 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:46 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:46 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:06:46 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:46 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:46 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.93993 (min) 11.3752 (max)
14:06:46 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:46 DEBUG opendrift.models.basemodel:1527: 625 active elements
14:06:46 DEBUG opendrift.models.basemodel:1538: 59.14048419731914 <- latitude -> 59.1710929167073
14:06:46 DEBUG opendrift.models.basemodel:1543: 10.952825334021503 <- longitude -> 11.008656708280903
14:06:46 DEBUG opendrift.models.basemodel:1548: -9.676827663323397 <- z -> 0.0
14:06:46 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:46 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:46 DEBUG opendrift.models.physics_methods:1050: min: 0.224370, mean: 4.043081, max: 8.956312
14:06:46 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.224370, mean: 4.043081, max: 8.956312
14:06:46 DEBUG opendrift.models.basemodel:813: 57 elements hit coastline, moving back to water
14:06:46 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:06:46 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:06:46 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:46 DEBUG opendrift.models.physics_methods:828: Advecting 34 of 625 elements above 0.100m with wind-sheared ocean current (0.023127 m/s - 0.172881 m/s)
14:06:46 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:46 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:46 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09926099588401793
14:06:46 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:46 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:46 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:46 DEBUG opendrift.models.oceandrift:582: 79 elements penetrated seafloor, lifting up
14:06:46 DEBUG opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:06:46 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:06:46 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:06:46 DEBUG opendrift.models.oceandrift:582: 58 elements penetrated seafloor, lifting up
14:06:46 DEBUG opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
14:06:46 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:06:46 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
14:06:46 DEBUG opendrift.models.oceandrift:582: 44 elements penetrated seafloor, lifting up
14:06:46 DEBUG opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:46 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:46 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:46 DEBUG opendrift.models.oceandrift:582: 49 elements penetrated seafloor, lifting up
14:06:46 DEBUG opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:46 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:46 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:46 DEBUG opendrift.models.oceandrift:582: 45 elements penetrated seafloor, lifting up
14:06:46 DEBUG opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:46 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:46 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:46 DEBUG opendrift.models.oceandrift:582: 42 elements penetrated seafloor, lifting up
14:06:46 DEBUG opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:46 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:46 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:46 DEBUG opendrift.models.oceandrift:582: 49 elements penetrated seafloor, lifting up
14:06:46 DEBUG opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:46 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:46 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:46 DEBUG opendrift.models.oceandrift:582: 45 elements penetrated seafloor, lifting up
14:06:46 DEBUG opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:06:46 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:06:46 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:06:46 DEBUG opendrift.models.oceandrift:582: 43 elements penetrated seafloor, lifting up
14:06:46 DEBUG opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:46 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:46 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:46 DEBUG opendrift.models.oceandrift:582: 40 elements penetrated seafloor, lifting up
14:06:46 DEBUG opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:46 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:46 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:46 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:46 DEBUG opendrift.models.basemodel:2945: 625 active elements (0 deactivated)
14:06:46 DEBUG opendrift.models.basemodel:1658: to be seeded: 9375, already seeded 625
14:06:46 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:06:46 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:46 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:46 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:46 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:46 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:46 DEBUG opendrift.models.basemodel:1253: Data needed for 660 elements
14:06:46 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:46 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 17:00:00 (before)
2023-09-01 18:00:00 (after)
14:06:46 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 17:00:00) in space (linearNDFast)
14:06:46 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:46 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:46 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:46 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:46 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:46 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:46 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.18986 (min) 11.4032 (max)
14:06:46 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:46 DEBUG opendrift.models.basemodel:1527: 660 active elements
14:06:46 DEBUG opendrift.models.basemodel:1538: 59.14058867601652 <- latitude -> 59.17015758534209
14:06:46 DEBUG opendrift.models.basemodel:1543: 10.952331055986264 <- longitude -> 11.007311390761146
14:06:46 DEBUG opendrift.models.basemodel:1548: -10.946149029295343 <- z -> 0.0
14:06:46 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:46 DEBUG opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
14:06:46 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:06:46 INFO opendrift.models.basemodel:2882: 2023-09-01 17:06:21.121579 - step 19 of 216 - 660 active elements (0 deactivated)
14:06:46 DEBUG opendrift.models.basemodel:2888: 9340 elements scheduled.
14:06:46 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:06:46 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:46 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:46 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:46 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:46 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:46 DEBUG opendrift.models.basemodel:1253: Data needed for 660 elements
14:06:46 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:46 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:46 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:46 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:46 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:46 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:46 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:46 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:46 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:46 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:46 DEBUG opendrift.models.basemodel:1253: Data needed for 660 elements
14:06:46 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:46 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 17:00:00 (before)
2023-09-01 18:00:00 (after)
14:06:47 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:47 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:47 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:47 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:47 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:47 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:47 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 18x18x5) for time after (2023-09-01 18:00:00)
14:06:47 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 17:00:00) in space (linearNDFast)
14:06:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:47 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 18:00:00) in space (linearNDFast)
14:06:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
14:06:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
14:06:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
14:06:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
14:06:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
14:06:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
14:06:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
14:06:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 318 elements, expanding data 1
14:06:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:06:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 318 elements, expanding data 1
14:06:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:06:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 318 elements, expanding data 1
14:06:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:06:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 318 elements, expanding data 1
14:06:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:06:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 318 elements, expanding data 1
14:06:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:06:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
14:06:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
14:06:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
14:06:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
14:06:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
14:06:47 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 17:00:00, weight 0.89) and
after (2023-09-01 18:00:00, weight 0.11) in time
14:06:47 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.0476794955894 and -58.99269915964418 degrees.
14:06:47 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.0476794955894 and -58.99269915964418 degrees.
14:06:47 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:47 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:47 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:47 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:47 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:47 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:47 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.578782 (min) 1.20207 (max)
14:06:47 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.803585 (min) 0.57157 (max)
14:06:47 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -8.68876e-05 (min) 0.000414398 (max)
14:06:47 DEBUG opendrift.models.basemodel:1524: x_wind: -1.93149 (min) 9.67248 (max)
14:06:47 DEBUG opendrift.models.basemodel:1524: y_wind: -4.68268 (min) 7.12987 (max)
14:06:47 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:47 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:47 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:47 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:47 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:06:47 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:47 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:47 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.18986 (min) 11.4032 (max)
14:06:47 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:47 DEBUG opendrift.models.basemodel:1527: 660 active elements
14:06:47 DEBUG opendrift.models.basemodel:1538: 59.14058867601652 <- latitude -> 59.17015758534209
14:06:47 DEBUG opendrift.models.basemodel:1543: 10.952331055986264 <- longitude -> 11.007311390761146
14:06:47 DEBUG opendrift.models.basemodel:1548: -10.946149029295343 <- z -> 0.0
14:06:47 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:47 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:47 DEBUG opendrift.models.physics_methods:1050: min: 0.207864, mean: 4.021178, max: 8.551816
14:06:47 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.207864, mean: 4.021178, max: 8.551816
14:06:47 DEBUG opendrift.models.basemodel:813: 59 elements hit coastline, moving back to water
14:06:47 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:06:47 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:06:47 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:47 DEBUG opendrift.models.physics_methods:828: Advecting 36 of 660 elements above 0.100m with wind-sheared ocean current (0.018762 m/s - 0.176453 m/s)
14:06:47 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:47 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:47 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09049794589336395
14:06:47 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:47 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:47 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:47 DEBUG opendrift.models.oceandrift:582: 50 elements penetrated seafloor, lifting up
14:06:47 DEBUG opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:47 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:47 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:47 DEBUG opendrift.models.oceandrift:582: 52 elements penetrated seafloor, lifting up
14:06:47 DEBUG opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:47 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:47 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:47 DEBUG opendrift.models.oceandrift:582: 48 elements penetrated seafloor, lifting up
14:06:47 DEBUG opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:47 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:47 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:47 DEBUG opendrift.models.oceandrift:582: 49 elements penetrated seafloor, lifting up
14:06:47 DEBUG opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:47 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:47 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:47 DEBUG opendrift.models.oceandrift:582: 35 elements penetrated seafloor, lifting up
14:06:47 DEBUG opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:47 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:47 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:47 DEBUG opendrift.models.oceandrift:582: 38 elements penetrated seafloor, lifting up
14:06:47 DEBUG opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:47 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:47 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:47 DEBUG opendrift.models.oceandrift:582: 41 elements penetrated seafloor, lifting up
14:06:47 DEBUG opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:06:47 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:06:47 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:06:47 DEBUG opendrift.models.oceandrift:582: 40 elements penetrated seafloor, lifting up
14:06:47 DEBUG opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:47 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:47 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:47 DEBUG opendrift.models.oceandrift:582: 46 elements penetrated seafloor, lifting up
14:06:47 DEBUG opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:47 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:47 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:47 DEBUG opendrift.models.oceandrift:582: 43 elements penetrated seafloor, lifting up
14:06:47 DEBUG opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:47 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:47 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:47 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:47 DEBUG opendrift.models.basemodel:2945: 660 active elements (0 deactivated)
14:06:47 DEBUG opendrift.models.basemodel:1658: to be seeded: 9340, already seeded 660
14:06:47 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:06:47 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:47 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:47 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:47 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:47 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:47 DEBUG opendrift.models.basemodel:1253: Data needed for 695 elements
14:06:47 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:47 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 17:00:00 (before)
2023-09-01 18:00:00 (after)
14:06:47 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 17:00:00) in space (linearNDFast)
14:06:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:47 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:47 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:47 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:47 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:47 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:47 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.06279 (min) 11.8513 (max)
14:06:47 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:47 DEBUG opendrift.models.basemodel:1527: 695 active elements
14:06:47 DEBUG opendrift.models.basemodel:1538: 59.14000029627871 <- latitude -> 59.171412206385845
14:06:47 DEBUG opendrift.models.basemodel:1543: 10.950971622952935 <- longitude -> 11.013533455516265
14:06:47 DEBUG opendrift.models.basemodel:1548: -11.393195381164551 <- z -> 0.0
14:06:47 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:47 DEBUG opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
14:06:47 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:06:47 INFO opendrift.models.basemodel:2882: 2023-09-01 17:16:21.121579 - step 20 of 216 - 695 active elements (0 deactivated)
14:06:47 DEBUG opendrift.models.basemodel:2888: 9305 elements scheduled.
14:06:47 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:06:47 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:47 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:47 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:47 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:47 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:47 DEBUG opendrift.models.basemodel:1253: Data needed for 695 elements
14:06:47 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:47 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:47 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:47 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:47 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:47 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:47 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:47 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:47 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:47 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:47 DEBUG opendrift.models.basemodel:1253: Data needed for 695 elements
14:06:47 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:47 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 17:00:00 (before)
2023-09-01 18:00:00 (after)
14:06:48 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:48 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:48 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:48 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:48 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:48 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:48 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 18x18x5) for time after (2023-09-01 18:00:00)
14:06:48 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 17:00:00) in space (linearNDFast)
14:06:48 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:48 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 18:00:00) in space (linearNDFast)
14:06:48 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 1
14:06:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 1
14:06:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
14:06:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
14:06:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
14:06:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
14:06:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
14:06:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 1
14:06:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:06:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 1
14:06:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:06:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 1
14:06:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:06:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 1
14:06:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:06:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 1
14:06:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:06:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 1
14:06:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 1
14:06:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 1
14:06:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 1
14:06:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 1
14:06:48 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 17:00:00, weight 0.73) and
after (2023-09-01 18:00:00, weight 0.27) in time
14:06:48 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.049038930288766 and -58.986477092371736 degrees.
14:06:48 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.049038930288766 and -58.986477092371736 degrees.
14:06:48 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:48 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:48 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:48 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:48 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:48 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:48 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.548279 (min) 1.18972 (max)
14:06:48 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.945422 (min) 0.553437 (max)
14:06:48 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -5.32577e-05 (min) 0.000415835 (max)
14:06:48 DEBUG opendrift.models.basemodel:1524: x_wind: -2.46569 (min) 9.0522 (max)
14:06:48 DEBUG opendrift.models.basemodel:1524: y_wind: -5.81294 (min) 7.45038 (max)
14:06:48 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:48 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:48 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:48 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:48 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:06:48 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:48 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:48 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.06279 (min) 11.8513 (max)
14:06:48 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:48 DEBUG opendrift.models.basemodel:1527: 695 active elements
14:06:48 DEBUG opendrift.models.basemodel:1538: 59.14000029627871 <- latitude -> 59.171412206385845
14:06:48 DEBUG opendrift.models.basemodel:1543: 10.950971622952935 <- longitude -> 11.013533455516265
14:06:48 DEBUG opendrift.models.basemodel:1548: -11.215774536132812 <- z -> 0.0
14:06:48 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:48 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:48 DEBUG opendrift.models.physics_methods:1050: min: 0.578740, mean: 4.117812, max: 8.113481
14:06:48 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.578740, mean: 4.117812, max: 8.113481
14:06:48 DEBUG opendrift.models.basemodel:813: 54 elements hit coastline, moving back to water
14:06:48 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:48 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:06:48 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:48 DEBUG opendrift.models.physics_methods:828: Advecting 37 of 695 elements above 0.100m with wind-sheared ocean current (0.013546 m/s - 0.149122 m/s)
14:06:48 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:48 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:48 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08145890711791992
14:06:48 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:48 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:48 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:48 DEBUG opendrift.models.oceandrift:582: 75 elements penetrated seafloor, lifting up
14:06:48 DEBUG opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:06:48 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:06:48 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:06:48 DEBUG opendrift.models.oceandrift:582: 61 elements penetrated seafloor, lifting up
14:06:48 DEBUG opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
14:06:48 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
14:06:48 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
14:06:48 DEBUG opendrift.models.oceandrift:582: 50 elements penetrated seafloor, lifting up
14:06:48 DEBUG opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:06:48 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:06:48 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:06:48 DEBUG opendrift.models.oceandrift:582: 63 elements penetrated seafloor, lifting up
14:06:48 DEBUG opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:48 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:48 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:48 DEBUG opendrift.models.oceandrift:582: 61 elements penetrated seafloor, lifting up
14:06:48 DEBUG opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:48 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:48 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:48 DEBUG opendrift.models.oceandrift:582: 54 elements penetrated seafloor, lifting up
14:06:48 DEBUG opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:48 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:48 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:48 DEBUG opendrift.models.oceandrift:582: 60 elements penetrated seafloor, lifting up
14:06:48 DEBUG opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:48 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:48 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:48 DEBUG opendrift.models.oceandrift:582: 59 elements penetrated seafloor, lifting up
14:06:48 DEBUG opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:06:48 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:06:48 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:06:48 DEBUG opendrift.models.oceandrift:582: 42 elements penetrated seafloor, lifting up
14:06:48 DEBUG opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:48 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:48 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:48 DEBUG opendrift.models.oceandrift:582: 49 elements penetrated seafloor, lifting up
14:06:48 DEBUG opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:06:48 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:06:48 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:06:48 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:48 DEBUG opendrift.models.basemodel:2945: 695 active elements (0 deactivated)
14:06:48 DEBUG opendrift.models.basemodel:1658: to be seeded: 9305, already seeded 695
14:06:48 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:06:48 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:48 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:48 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:48 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:48 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:48 DEBUG opendrift.models.basemodel:1253: Data needed for 730 elements
14:06:48 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:48 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 17:00:00 (before)
2023-09-01 18:00:00 (after)
14:06:48 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 17:00:00) in space (linearNDFast)
14:06:48 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:48 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:48 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:48 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:48 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:48 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:48 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.4795 (min) 11.6236 (max)
14:06:48 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:48 DEBUG opendrift.models.basemodel:1527: 730 active elements
14:06:48 DEBUG opendrift.models.basemodel:1538: 59.14075823524607 <- latitude -> 59.17166718940605
14:06:48 DEBUG opendrift.models.basemodel:1543: 10.949954482386348 <- longitude -> 11.014012605503904
14:06:48 DEBUG opendrift.models.basemodel:1548: -11.040049047984713 <- z -> 0.0
14:06:48 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:48 DEBUG opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
14:06:48 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:06:48 INFO opendrift.models.basemodel:2882: 2023-09-01 17:26:21.121579 - step 21 of 216 - 730 active elements (0 deactivated)
14:06:48 DEBUG opendrift.models.basemodel:2888: 9270 elements scheduled.
14:06:48 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:06:48 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:48 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:48 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:48 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:48 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:48 DEBUG opendrift.models.basemodel:1253: Data needed for 730 elements
14:06:48 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:48 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:48 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:48 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:48 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:48 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:48 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:48 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:48 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:48 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:48 DEBUG opendrift.models.basemodel:1253: Data needed for 730 elements
14:06:48 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:48 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 17:00:00 (before)
2023-09-01 18:00:00 (after)
14:06:49 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:49 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:49 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:49 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:49 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:49 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:49 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 18x18x5) for time after (2023-09-01 18:00:00)
14:06:49 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 17:00:00) in space (linearNDFast)
14:06:49 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:49 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 18:00:00) in space (linearNDFast)
14:06:49 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
14:06:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
14:06:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 1
14:06:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 1
14:06:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 1
14:06:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 1
14:06:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 1
14:06:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 367 elements, expanding data 1
14:06:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
14:06:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 367 elements, expanding data 1
14:06:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
14:06:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 367 elements, expanding data 1
14:06:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
14:06:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 367 elements, expanding data 1
14:06:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
14:06:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 367 elements, expanding data 1
14:06:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
14:06:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
14:06:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
14:06:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
14:06:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
14:06:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
14:06:49 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 17:00:00, weight 0.56) and
after (2023-09-01 18:00:00, weight 0.44) in time
14:06:49 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.050056081976386 and -58.98599794692612 degrees.
14:06:49 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.050056081976386 and -58.98599794692612 degrees.
14:06:49 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:49 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:49 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:49 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:49 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:49 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:49 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.593597 (min) 1.39779 (max)
14:06:49 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.923117 (min) 0.547001 (max)
14:06:49 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -7.28087e-05 (min) 0.000283687 (max)
14:06:49 DEBUG opendrift.models.basemodel:1524: x_wind: -3.22395 (min) 10.9405 (max)
14:06:49 DEBUG opendrift.models.basemodel:1524: y_wind: -5.02579 (min) 7.04361 (max)
14:06:49 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:49 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:49 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:49 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:49 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:06:49 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:49 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:49 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.4795 (min) 11.6236 (max)
14:06:49 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:49 DEBUG opendrift.models.basemodel:1527: 730 active elements
14:06:49 DEBUG opendrift.models.basemodel:1538: 59.14075823524607 <- latitude -> 59.17166718940605
14:06:49 DEBUG opendrift.models.basemodel:1543: 10.949954482386348 <- longitude -> 11.014012605503904
14:06:49 DEBUG opendrift.models.basemodel:1548: -11.040049047984713 <- z -> 0.0
14:06:49 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:49 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:49 DEBUG opendrift.models.physics_methods:1050: min: 0.280735, mean: 4.253438, max: 9.734223
14:06:49 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.280735, mean: 4.253438, max: 9.734223
14:06:49 DEBUG opendrift.models.basemodel:813: 56 elements hit coastline, moving back to water
14:06:49 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:06:49 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:06:49 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:49 DEBUG opendrift.models.physics_methods:828: Advecting 37 of 730 elements above 0.100m with wind-sheared ocean current (0.004482 m/s - 0.148056 m/s)
14:06:49 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:49 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:49 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.11725195299871444
14:06:49 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:49 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:49 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:49 DEBUG opendrift.models.oceandrift:582: 68 elements penetrated seafloor, lifting up
14:06:49 DEBUG opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:06:49 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:06:49 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:06:49 DEBUG opendrift.models.oceandrift:582: 70 elements penetrated seafloor, lifting up
14:06:49 DEBUG opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:06:49 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:06:49 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:06:49 DEBUG opendrift.models.oceandrift:582: 53 elements penetrated seafloor, lifting up
14:06:49 DEBUG opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:49 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:49 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:49 DEBUG opendrift.models.oceandrift:582: 65 elements penetrated seafloor, lifting up
14:06:49 DEBUG opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:49 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:49 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:49 DEBUG opendrift.models.oceandrift:582: 65 elements penetrated seafloor, lifting up
14:06:49 DEBUG opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:49 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:49 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:49 DEBUG opendrift.models.oceandrift:582: 43 elements penetrated seafloor, lifting up
14:06:49 DEBUG opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:49 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:49 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:49 DEBUG opendrift.models.oceandrift:582: 59 elements penetrated seafloor, lifting up
14:06:49 DEBUG opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:06:49 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:06:49 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:06:49 DEBUG opendrift.models.oceandrift:582: 62 elements penetrated seafloor, lifting up
14:06:49 DEBUG opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:49 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:49 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:49 DEBUG opendrift.models.oceandrift:582: 62 elements penetrated seafloor, lifting up
14:06:49 DEBUG opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
14:06:49 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
14:06:49 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
14:06:49 DEBUG opendrift.models.oceandrift:582: 54 elements penetrated seafloor, lifting up
14:06:49 DEBUG opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:49 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:49 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:49 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:49 DEBUG opendrift.models.basemodel:2945: 730 active elements (0 deactivated)
14:06:49 DEBUG opendrift.models.basemodel:1658: to be seeded: 9270, already seeded 730
14:06:49 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:06:49 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:49 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:49 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:49 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:49 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:49 DEBUG opendrift.models.basemodel:1253: Data needed for 764 elements
14:06:49 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:49 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 17:00:00 (before)
2023-09-01 18:00:00 (after)
14:06:49 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 17:00:00) in space (linearNDFast)
14:06:49 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:49 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:49 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:49 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:49 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:49 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:49 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.66112 (min) 12.0051 (max)
14:06:49 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:49 DEBUG opendrift.models.basemodel:1527: 764 active elements
14:06:49 DEBUG opendrift.models.basemodel:1538: 59.13812313447127 <- latitude -> 59.17075061579153
14:06:49 DEBUG opendrift.models.basemodel:1543: 10.949424931785725 <- longitude -> 11.014893891654625
14:06:49 DEBUG opendrift.models.basemodel:1548: -10.223201360948252 <- z -> 0.0
14:06:49 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:49 DEBUG opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
14:06:49 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:06:49 INFO opendrift.models.basemodel:2882: 2023-09-01 17:36:21.121579 - step 22 of 216 - 764 active elements (0 deactivated)
14:06:49 DEBUG opendrift.models.basemodel:2888: 9236 elements scheduled.
14:06:49 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:06:49 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:49 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:49 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:49 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:49 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:49 DEBUG opendrift.models.basemodel:1253: Data needed for 764 elements
14:06:49 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:49 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:49 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:49 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:49 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:49 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:49 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:49 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:49 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:49 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:49 DEBUG opendrift.models.basemodel:1253: Data needed for 764 elements
14:06:49 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:49 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 17:00:00 (before)
2023-09-01 18:00:00 (after)
14:06:50 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:50 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:50 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:50 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:50 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:50 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:50 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 18x18x5) for time after (2023-09-01 18:00:00)
14:06:50 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 17:00:00) in space (linearNDFast)
14:06:50 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:50 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 18:00:00) in space (linearNDFast)
14:06:50 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 1
14:06:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 1
14:06:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 1
14:06:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 1
14:06:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 1
14:06:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 1
14:06:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 1
14:06:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 378 elements, expanding data 1
14:06:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
14:06:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 378 elements, expanding data 1
14:06:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
14:06:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 378 elements, expanding data 1
14:06:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
14:06:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 378 elements, expanding data 1
14:06:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
14:06:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 378 elements, expanding data 1
14:06:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
14:06:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 1
14:06:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 1
14:06:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 1
14:06:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 1
14:06:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 1
14:06:50 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 17:00:00, weight 0.39) and
after (2023-09-01 18:00:00, weight 0.61) in time
14:06:50 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05058563331095 and -58.98511665824165 degrees.
14:06:50 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05058563331095 and -58.98511665824165 degrees.
14:06:50 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:50 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:50 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:50 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:50 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:50 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:50 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.571713 (min) 1.05043 (max)
14:06:50 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.998137 (min) 0.639796 (max)
14:06:50 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -8.16458e-05 (min) 0.000329458 (max)
14:06:50 DEBUG opendrift.models.basemodel:1524: x_wind: -1.25618 (min) 11.1047 (max)
14:06:50 DEBUG opendrift.models.basemodel:1524: y_wind: -5.48087 (min) 7.11925 (max)
14:06:50 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:50 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:50 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:50 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:50 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:06:50 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:50 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:50 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.66112 (min) 12.0051 (max)
14:06:50 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:50 DEBUG opendrift.models.basemodel:1527: 764 active elements
14:06:50 DEBUG opendrift.models.basemodel:1538: 59.13812313447127 <- latitude -> 59.17075061579153
14:06:50 DEBUG opendrift.models.basemodel:1543: 10.949424931785725 <- longitude -> 11.014893891654625
14:06:50 DEBUG opendrift.models.basemodel:1548: -10.223201360948252 <- z -> 0.0
14:06:50 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:50 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:50 DEBUG opendrift.models.physics_methods:1050: min: 0.123653, mean: 4.178487, max: 9.488784
14:06:50 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.123653, mean: 4.178487, max: 9.488784
14:06:50 DEBUG opendrift.models.basemodel:813: 65 elements hit coastline, moving back to water
14:06:50 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:06:50 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:06:50 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:50 DEBUG opendrift.models.physics_methods:828: Advecting 35 of 764 elements above 0.100m with wind-sheared ocean current (0.023623 m/s - 0.171422 m/s)
14:06:50 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:50 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:50 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.1114139039006996
14:06:50 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:50 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:50 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:50 DEBUG opendrift.models.oceandrift:582: 71 elements penetrated seafloor, lifting up
14:06:50 DEBUG opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:06:50 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:06:50 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:06:50 DEBUG opendrift.models.oceandrift:582: 65 elements penetrated seafloor, lifting up
14:06:50 DEBUG opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:50 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:50 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:50 DEBUG opendrift.models.oceandrift:582: 57 elements penetrated seafloor, lifting up
14:06:50 DEBUG opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:06:50 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:06:50 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:06:50 DEBUG opendrift.models.oceandrift:582: 60 elements penetrated seafloor, lifting up
14:06:50 DEBUG opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:06:50 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:06:50 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:06:50 DEBUG opendrift.models.oceandrift:582: 59 elements penetrated seafloor, lifting up
14:06:50 DEBUG opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
14:06:50 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
14:06:50 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
14:06:50 DEBUG opendrift.models.oceandrift:582: 60 elements penetrated seafloor, lifting up
14:06:50 DEBUG opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:50 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:50 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:50 DEBUG opendrift.models.oceandrift:582: 53 elements penetrated seafloor, lifting up
14:06:50 DEBUG opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:50 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:50 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:50 DEBUG opendrift.models.oceandrift:582: 61 elements penetrated seafloor, lifting up
14:06:50 DEBUG opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
14:06:50 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
14:06:50 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
14:06:50 DEBUG opendrift.models.oceandrift:582: 56 elements penetrated seafloor, lifting up
14:06:50 DEBUG opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
14:06:50 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:06:50 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
14:06:50 DEBUG opendrift.models.oceandrift:582: 52 elements penetrated seafloor, lifting up
14:06:50 DEBUG opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:06:50 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:06:50 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:06:50 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:50 DEBUG opendrift.models.basemodel:2945: 764 active elements (0 deactivated)
14:06:50 DEBUG opendrift.models.basemodel:1658: to be seeded: 9236, already seeded 764
14:06:50 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:06:50 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:50 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:50 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:50 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:50 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:50 DEBUG opendrift.models.basemodel:1253: Data needed for 799 elements
14:06:50 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:50 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 17:00:00 (before)
2023-09-01 18:00:00 (after)
14:06:50 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 17:00:00) in space (linearNDFast)
14:06:50 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:50 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:50 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:50 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:50 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:50 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:50 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.83258 (min) 12.166 (max)
14:06:50 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:50 DEBUG opendrift.models.basemodel:1527: 799 active elements
14:06:50 DEBUG opendrift.models.basemodel:1538: 59.13824602635891 <- latitude -> 59.17044857809972
14:06:50 DEBUG opendrift.models.basemodel:1543: 10.949988797047487 <- longitude -> 11.015352172560867
14:06:50 DEBUG opendrift.models.basemodel:1548: -10.150604476928711 <- z -> 0.0
14:06:50 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:50 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
14:06:50 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:06:50 INFO opendrift.models.basemodel:2882: 2023-09-01 17:46:21.121579 - step 23 of 216 - 799 active elements (0 deactivated)
14:06:50 DEBUG opendrift.models.basemodel:2888: 9201 elements scheduled.
14:06:50 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:06:50 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:50 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:50 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:50 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:50 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:50 DEBUG opendrift.models.basemodel:1253: Data needed for 799 elements
14:06:50 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:50 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:50 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:50 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:50 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:50 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:50 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:50 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:50 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:50 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:50 DEBUG opendrift.models.basemodel:1253: Data needed for 799 elements
14:06:50 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:50 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 17:00:00 (before)
2023-09-01 18:00:00 (after)
14:06:51 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:51 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:51 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:51 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:51 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:51 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:51 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 18x18x5) for time after (2023-09-01 18:00:00)
14:06:51 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 17:00:00) in space (linearNDFast)
14:06:51 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:51 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 18:00:00) in space (linearNDFast)
14:06:51 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 1
14:06:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 1
14:06:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 95 elements, expanding data 1
14:06:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 95 elements, expanding data 1
14:06:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 95 elements, expanding data 1
14:06:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 95 elements, expanding data 1
14:06:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 95 elements, expanding data 1
14:06:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 398 elements, expanding data 1
14:06:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:06:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 398 elements, expanding data 1
14:06:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:06:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 398 elements, expanding data 1
14:06:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:06:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 398 elements, expanding data 1
14:06:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:06:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 398 elements, expanding data 1
14:06:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:06:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 1
14:06:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 1
14:06:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 1
14:06:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 1
14:06:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 1
14:06:51 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 17:00:00, weight 0.23) and
after (2023-09-01 18:00:00, weight 0.77) in time
14:06:51 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.0500217607714 and -58.98465837165131 degrees.
14:06:51 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.0500217607714 and -58.98465837165131 degrees.
14:06:51 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:51 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:51 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:51 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:51 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:51 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:51 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.724215 (min) 1.15217 (max)
14:06:51 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.947853 (min) 0.520679 (max)
14:06:51 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -6.41001e-05 (min) 0.000246065 (max)
14:06:51 DEBUG opendrift.models.basemodel:1524: x_wind: -1.90254 (min) 10.7537 (max)
14:06:51 DEBUG opendrift.models.basemodel:1524: y_wind: -5.46771 (min) 6.80946 (max)
14:06:51 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:51 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:51 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:51 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:51 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:06:51 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:51 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:51 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.83258 (min) 12.166 (max)
14:06:51 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:51 DEBUG opendrift.models.basemodel:1527: 799 active elements
14:06:51 DEBUG opendrift.models.basemodel:1538: 59.13824602635891 <- latitude -> 59.17044857809972
14:06:51 DEBUG opendrift.models.basemodel:1543: 10.949988797047487 <- longitude -> 11.015352172560867
14:06:51 DEBUG opendrift.models.basemodel:1548: -10.150604476928711 <- z -> 0.0
14:06:51 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:51 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:51 DEBUG opendrift.models.physics_methods:1050: min: 0.096256, mean: 4.306099, max: 9.837042
14:06:51 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.096256, mean: 4.306099, max: 9.837042
14:06:51 DEBUG opendrift.models.basemodel:813: 56 elements hit coastline, moving back to water
14:06:51 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:06:51 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:06:51 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:51 DEBUG opendrift.models.physics_methods:828: Advecting 37 of 799 elements above 0.100m with wind-sheared ocean current (0.026094 m/s - 0.158752 m/s)
14:06:51 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:51 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:51 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.11974195199306487
14:06:51 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:51 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:51 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:51 DEBUG opendrift.models.oceandrift:582: 85 elements penetrated seafloor, lifting up
14:06:51 DEBUG opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:06:51 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:06:51 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:06:51 DEBUG opendrift.models.oceandrift:582: 64 elements penetrated seafloor, lifting up
14:06:51 DEBUG opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:06:51 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:06:51 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:06:51 DEBUG opendrift.models.oceandrift:582: 53 elements penetrated seafloor, lifting up
14:06:51 DEBUG opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
14:06:51 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:06:51 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
14:06:51 DEBUG opendrift.models.oceandrift:582: 64 elements penetrated seafloor, lifting up
14:06:51 DEBUG opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
14:06:51 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:06:51 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
14:06:51 DEBUG opendrift.models.oceandrift:582: 64 elements penetrated seafloor, lifting up
14:06:51 DEBUG opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:51 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:51 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:51 DEBUG opendrift.models.oceandrift:582: 61 elements penetrated seafloor, lifting up
14:06:51 DEBUG opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
14:06:51 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:06:51 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
14:06:51 DEBUG opendrift.models.oceandrift:582: 65 elements penetrated seafloor, lifting up
14:06:51 DEBUG opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:51 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:51 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:51 DEBUG opendrift.models.oceandrift:582: 70 elements penetrated seafloor, lifting up
14:06:51 DEBUG opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:51 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:51 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:51 DEBUG opendrift.models.oceandrift:582: 66 elements penetrated seafloor, lifting up
14:06:51 DEBUG opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
14:06:51 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
14:06:51 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
14:06:51 DEBUG opendrift.models.oceandrift:582: 57 elements penetrated seafloor, lifting up
14:06:51 DEBUG opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
14:06:51 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:06:51 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
14:06:51 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:51 DEBUG opendrift.models.basemodel:2945: 799 active elements (0 deactivated)
14:06:51 DEBUG opendrift.models.basemodel:1658: to be seeded: 9201, already seeded 799
14:06:51 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:06:51 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:51 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:51 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:51 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:51 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:51 DEBUG opendrift.models.basemodel:1253: Data needed for 834 elements
14:06:51 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:51 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 17:00:00 (before)
2023-09-01 18:00:00 (after)
14:06:51 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 17:00:00) in space (linearNDFast)
14:06:51 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:51 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:51 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:51 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:51 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:51 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:51 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.96229 (min) 12.4938 (max)
14:06:51 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:51 DEBUG opendrift.models.basemodel:1527: 834 active elements
14:06:51 DEBUG opendrift.models.basemodel:1538: 59.137213145107125 <- latitude -> 59.16933971664699
14:06:51 DEBUG opendrift.models.basemodel:1543: 10.949996076369974 <- longitude -> 11.01605702880652
14:06:51 DEBUG opendrift.models.basemodel:1548: -10.543629517442069 <- z -> 0.0
14:06:51 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:51 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
14:06:51 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:06:51 INFO opendrift.models.basemodel:2882: 2023-09-01 17:56:21.121579 - step 24 of 216 - 834 active elements (0 deactivated)
14:06:51 DEBUG opendrift.models.basemodel:2888: 9166 elements scheduled.
14:06:51 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:06:51 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:51 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:51 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:51 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:51 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:51 DEBUG opendrift.models.basemodel:1253: Data needed for 834 elements
14:06:51 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:51 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:51 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:51 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:51 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:51 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:51 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:51 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:51 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:51 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:51 DEBUG opendrift.models.basemodel:1253: Data needed for 834 elements
14:06:51 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:51 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 17:00:00 (before)
2023-09-01 18:00:00 (after)
14:06:52 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:52 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:52 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:52 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:52 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:52 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:52 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 18x18x5) for time after (2023-09-01 18:00:00)
14:06:52 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 17:00:00) in space (linearNDFast)
14:06:52 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:52 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 18:00:00) in space (linearNDFast)
14:06:52 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
14:06:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
14:06:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 104 elements, expanding data 1
14:06:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 104 elements, expanding data 1
14:06:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 104 elements, expanding data 1
14:06:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 104 elements, expanding data 1
14:06:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 104 elements, expanding data 1
14:06:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 430 elements, expanding data 1
14:06:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:06:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 430 elements, expanding data 1
14:06:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:06:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 430 elements, expanding data 1
14:06:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:06:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 430 elements, expanding data 1
14:06:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:06:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 430 elements, expanding data 1
14:06:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:06:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
14:06:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
14:06:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
14:06:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
14:06:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
14:06:52 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 17:00:00, weight 0.06) and
after (2023-09-01 18:00:00, weight 0.94) in time
14:06:52 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05001447849048 and -58.983953516754354 degrees.
14:06:52 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05001447849048 and -58.983953516754354 degrees.
14:06:52 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:52 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:52 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:52 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:52 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:52 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:52 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.666312 (min) 1.33956 (max)
14:06:52 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.15252 (min) 0.554845 (max)
14:06:52 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -7.09202e-05 (min) 0.000315642 (max)
14:06:52 DEBUG opendrift.models.basemodel:1524: x_wind: -1.79616 (min) 11.4846 (max)
14:06:52 DEBUG opendrift.models.basemodel:1524: y_wind: -4.45252 (min) 6.75144 (max)
14:06:52 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:52 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:52 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:52 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:52 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:06:52 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:52 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:52 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.96229 (min) 12.4938 (max)
14:06:52 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:52 DEBUG opendrift.models.basemodel:1527: 834 active elements
14:06:52 DEBUG opendrift.models.basemodel:1538: 59.137213145107125 <- latitude -> 59.16933971664699
14:06:52 DEBUG opendrift.models.basemodel:1543: 10.949996076369974 <- longitude -> 11.01605702880652
14:06:52 DEBUG opendrift.models.basemodel:1548: -10.543629517442069 <- z -> 0.0
14:06:52 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:52 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:52 DEBUG opendrift.models.physics_methods:1050: min: 0.667098, mean: 4.406997, max: 10.097745
14:06:52 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.667098, mean: 4.406997, max: 10.097745
14:06:52 DEBUG opendrift.models.basemodel:813: 54 elements hit coastline, moving back to water
14:06:52 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:06:52 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:06:52 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:52 DEBUG opendrift.models.physics_methods:828: Advecting 35 of 834 elements above 0.100m with wind-sheared ocean current (0.020411 m/s - 0.185616 m/s)
14:06:52 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:52 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:52 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.12617264781148907
14:06:52 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:52 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:52 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:52 DEBUG opendrift.models.oceandrift:582: 86 elements penetrated seafloor, lifting up
14:06:52 DEBUG opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:06:52 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:06:52 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:06:52 DEBUG opendrift.models.oceandrift:582: 72 elements penetrated seafloor, lifting up
14:06:52 DEBUG opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:06:52 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:06:52 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:06:52 DEBUG opendrift.models.oceandrift:582: 66 elements penetrated seafloor, lifting up
14:06:52 DEBUG opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:06:52 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:06:52 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:06:52 DEBUG opendrift.models.oceandrift:582: 62 elements penetrated seafloor, lifting up
14:06:52 DEBUG opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:52 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:52 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:52 DEBUG opendrift.models.oceandrift:582: 60 elements penetrated seafloor, lifting up
14:06:52 DEBUG opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:52 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:52 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:52 DEBUG opendrift.models.oceandrift:582: 63 elements penetrated seafloor, lifting up
14:06:52 DEBUG opendrift.models.oceandrift:600: 11 elements reached seafloor, set to bottom
14:06:52 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
14:06:52 DEBUG opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
14:06:52 DEBUG opendrift.models.oceandrift:582: 49 elements penetrated seafloor, lifting up
14:06:52 DEBUG opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:52 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:52 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:52 DEBUG opendrift.models.oceandrift:582: 61 elements penetrated seafloor, lifting up
14:06:52 DEBUG opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:52 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:52 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:52 DEBUG opendrift.models.oceandrift:582: 56 elements penetrated seafloor, lifting up
14:06:52 DEBUG opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:06:52 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:06:52 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:06:52 DEBUG opendrift.models.oceandrift:582: 57 elements penetrated seafloor, lifting up
14:06:52 DEBUG opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:52 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:52 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:52 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:52 DEBUG opendrift.models.basemodel:2945: 834 active elements (0 deactivated)
14:06:52 DEBUG opendrift.models.basemodel:1658: to be seeded: 9166, already seeded 834
14:06:52 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:06:52 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:52 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:52 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:52 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:52 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:52 DEBUG opendrift.models.basemodel:1253: Data needed for 868 elements
14:06:52 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:52 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 18:00:00 (before)
2023-09-01 19:00:00 (after)
14:06:52 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 18:00:00) in space (linearNDFast)
14:06:52 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:06:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:06:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:06:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:06:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:06:52 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:52 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:52 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:52 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:52 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:52 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.07565 (min) 12.6766 (max)
14:06:52 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:52 DEBUG opendrift.models.basemodel:1527: 868 active elements
14:06:52 DEBUG opendrift.models.basemodel:1538: 59.13719370898072 <- latitude -> 59.16960275669497
14:06:52 DEBUG opendrift.models.basemodel:1543: 10.949873511052074 <- longitude -> 11.014084479098111
14:06:52 DEBUG opendrift.models.basemodel:1548: -10.890111198425293 <- z -> 0.0
14:06:52 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:52 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
14:06:52 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:06:52 INFO opendrift.models.basemodel:2882: 2023-09-01 18:06:21.121579 - step 25 of 216 - 868 active elements (0 deactivated)
14:06:52 DEBUG opendrift.models.basemodel:2888: 9132 elements scheduled.
14:06:52 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:06:52 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:52 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:52 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:52 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:52 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:52 DEBUG opendrift.models.basemodel:1253: Data needed for 868 elements
14:06:52 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:52 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:52 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:52 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:52 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:52 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:52 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:52 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:52 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:52 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:52 DEBUG opendrift.models.basemodel:1253: Data needed for 868 elements
14:06:52 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:52 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 18:00:00 (before)
2023-09-01 19:00:00 (after)
14:06:52 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:52 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:52 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:52 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:52 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:52 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:52 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 20x18x5) for time after (2023-09-01 19:00:00)
14:06:52 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 18:00:00) in space (linearNDFast)
14:06:52 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:52 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 19:00:00) in space (linearNDFast)
14:06:52 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 103 elements, expanding data 1
14:06:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 103 elements, expanding data 1
14:06:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 120 elements, expanding data 1
14:06:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:06:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 120 elements, expanding data 1
14:06:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:06:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 120 elements, expanding data 1
14:06:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:06:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 120 elements, expanding data 1
14:06:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:06:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 120 elements, expanding data 1
14:06:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:06:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 435 elements, expanding data 1
14:06:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 2
14:06:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 435 elements, expanding data 1
14:06:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 2
14:06:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 435 elements, expanding data 1
14:06:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 2
14:06:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 435 elements, expanding data 1
14:06:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 2
14:06:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 435 elements, expanding data 1
14:06:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 2
14:06:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 103 elements, expanding data 1
14:06:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 103 elements, expanding data 1
14:06:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 103 elements, expanding data 1
14:06:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 103 elements, expanding data 1
14:06:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 103 elements, expanding data 1
14:06:52 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 18:00:00, weight 0.89) and
after (2023-09-01 19:00:00, weight 0.11) in time
14:06:52 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.050137047656975 and -58.98592607678872 degrees.
14:06:52 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.050137047656975 and -58.98592607678872 degrees.
14:06:52 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:52 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:52 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:52 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:52 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:52 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:52 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.754933 (min) 1.22269 (max)
14:06:52 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.07719 (min) 0.56121 (max)
14:06:52 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -9.05106e-05 (min) 0.000340436 (max)
14:06:52 DEBUG opendrift.models.basemodel:1524: x_wind: -2.56039 (min) 10.158 (max)
14:06:52 DEBUG opendrift.models.basemodel:1524: y_wind: -4.35955 (min) 7.69374 (max)
14:06:52 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:52 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:52 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:52 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:52 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:06:52 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:52 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:52 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.07565 (min) 12.6766 (max)
14:06:52 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:52 DEBUG opendrift.models.basemodel:1527: 868 active elements
14:06:52 DEBUG opendrift.models.basemodel:1538: 59.13719370898072 <- latitude -> 59.16960275669497
14:06:52 DEBUG opendrift.models.basemodel:1543: 10.949873511052074 <- longitude -> 11.014084479098111
14:06:52 DEBUG opendrift.models.basemodel:1548: -10.82186435699463 <- z -> 0.0
14:06:52 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:52 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:52 DEBUG opendrift.models.physics_methods:1050: min: 0.296139, mean: 4.320695, max: 9.191047
14:06:52 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.296139, mean: 4.320695, max: 9.191047
14:06:52 DEBUG opendrift.models.basemodel:813: 56 elements hit coastline, moving back to water
14:06:52 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:06:53 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:06:53 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:53 DEBUG opendrift.models.physics_methods:828: Advecting 34 of 868 elements above 0.100m with wind-sheared ocean current (0.006932 m/s - 0.144830 m/s)
14:06:53 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:53 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:53 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10453201620729445
14:06:53 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:53 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:53 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:53 DEBUG opendrift.models.oceandrift:582: 88 elements penetrated seafloor, lifting up
14:06:53 DEBUG opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
14:06:53 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:06:53 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
14:06:53 DEBUG opendrift.models.oceandrift:582: 79 elements penetrated seafloor, lifting up
14:06:53 DEBUG opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:06:53 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:06:53 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:06:53 DEBUG opendrift.models.oceandrift:582: 66 elements penetrated seafloor, lifting up
14:06:53 DEBUG opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:53 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:53 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:53 DEBUG opendrift.models.oceandrift:582: 67 elements penetrated seafloor, lifting up
14:06:53 DEBUG opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:06:53 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:06:53 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:06:53 DEBUG opendrift.models.oceandrift:582: 70 elements penetrated seafloor, lifting up
14:06:53 DEBUG opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:06:53 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:06:53 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:06:53 DEBUG opendrift.models.oceandrift:582: 64 elements penetrated seafloor, lifting up
14:06:53 DEBUG opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
14:06:53 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:06:53 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
14:06:53 DEBUG opendrift.models.oceandrift:582: 70 elements penetrated seafloor, lifting up
14:06:53 DEBUG opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:53 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:53 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:53 DEBUG opendrift.models.oceandrift:582: 70 elements penetrated seafloor, lifting up
14:06:53 DEBUG opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
14:06:53 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
14:06:53 DEBUG opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
14:06:53 DEBUG opendrift.models.oceandrift:582: 58 elements penetrated seafloor, lifting up
14:06:53 DEBUG opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
14:06:53 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:06:53 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
14:06:53 DEBUG opendrift.models.oceandrift:582: 56 elements penetrated seafloor, lifting up
14:06:53 DEBUG opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:53 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:53 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:53 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:53 DEBUG opendrift.models.basemodel:2945: 868 active elements (0 deactivated)
14:06:53 DEBUG opendrift.models.basemodel:1658: to be seeded: 9132, already seeded 868
14:06:53 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:06:53 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:53 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:53 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:53 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:53 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:53 DEBUG opendrift.models.basemodel:1253: Data needed for 903 elements
14:06:53 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:53 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 18:00:00 (before)
2023-09-01 19:00:00 (after)
14:06:53 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 18:00:00) in space (linearNDFast)
14:06:53 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:53 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:53 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:53 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:53 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:53 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:53 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.63228 (min) 12.7425 (max)
14:06:53 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:53 DEBUG opendrift.models.basemodel:1527: 903 active elements
14:06:53 DEBUG opendrift.models.basemodel:1538: 59.13586543425104 <- latitude -> 59.169193267822266
14:06:53 DEBUG opendrift.models.basemodel:1543: 10.94682042348086 <- longitude -> 11.01707284079702
14:06:53 DEBUG opendrift.models.basemodel:1548: -10.551856994628906 <- z -> 0.0
14:06:53 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:53 DEBUG opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
14:06:53 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:06:53 INFO opendrift.models.basemodel:2882: 2023-09-01 18:16:21.121579 - step 26 of 216 - 903 active elements (0 deactivated)
14:06:53 DEBUG opendrift.models.basemodel:2888: 9097 elements scheduled.
14:06:53 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:06:53 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:53 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:53 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:53 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:53 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:53 DEBUG opendrift.models.basemodel:1253: Data needed for 903 elements
14:06:53 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:53 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:53 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:53 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:53 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:53 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:53 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:53 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:53 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:53 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:53 DEBUG opendrift.models.basemodel:1253: Data needed for 903 elements
14:06:53 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:53 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 18:00:00 (before)
2023-09-01 19:00:00 (after)
14:06:53 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:53 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:53 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:53 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:53 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:53 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:53 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 20x18x5) for time after (2023-09-01 19:00:00)
14:06:53 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 18:00:00) in space (linearNDFast)
14:06:53 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:53 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 19:00:00) in space (linearNDFast)
14:06:53 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1
14:06:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1
14:06:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 1
14:06:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:06:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 1
14:06:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:06:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 1
14:06:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:06:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 1
14:06:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:06:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 1
14:06:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:06:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 468 elements, expanding data 1
14:06:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 2
14:06:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 468 elements, expanding data 1
14:06:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 2
14:06:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 468 elements, expanding data 1
14:06:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 2
14:06:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 468 elements, expanding data 1
14:06:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 2
14:06:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 468 elements, expanding data 1
14:06:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 2
14:06:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1
14:06:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1
14:06:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1
14:06:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1
14:06:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1
14:06:53 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 18:00:00, weight 0.73) and
after (2023-09-01 19:00:00, weight 0.27) in time
14:06:53 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05319013156232 and -58.98293771688355 degrees.
14:06:53 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05319013156232 and -58.98293771688355 degrees.
14:06:53 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:53 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:53 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:53 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:53 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:53 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:53 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.667322 (min) 1.0706 (max)
14:06:53 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.13201 (min) 0.65627 (max)
14:06:53 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -7.24827e-05 (min) 0.000465089 (max)
14:06:53 DEBUG opendrift.models.basemodel:1524: x_wind: -1.55903 (min) 10.7803 (max)
14:06:53 DEBUG opendrift.models.basemodel:1524: y_wind: -5.0498 (min) 7.88895 (max)
14:06:53 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:53 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:53 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:53 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:53 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:06:53 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:53 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:53 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.63228 (min) 12.7425 (max)
14:06:53 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:53 DEBUG opendrift.models.basemodel:1527: 903 active elements
14:06:53 DEBUG opendrift.models.basemodel:1538: 59.13586543425104 <- latitude -> 59.169193267822266
14:06:53 DEBUG opendrift.models.basemodel:1543: 10.94682042348086 <- longitude -> 11.01707284079702
14:06:53 DEBUG opendrift.models.basemodel:1548: -10.455546379089355 <- z -> 0.0
14:06:53 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:53 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:53 DEBUG opendrift.models.physics_methods:1050: min: 0.066528, mean: 4.263632, max: 9.601825
14:06:53 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.066528, mean: 4.263632, max: 9.601825
14:06:53 DEBUG opendrift.models.basemodel:813: 66 elements hit coastline, moving back to water
14:06:53 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:53 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:06:53 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:53 DEBUG opendrift.models.physics_methods:828: Advecting 35 of 903 elements above 0.100m with wind-sheared ocean current (0.030230 m/s - 0.205908 m/s)
14:06:53 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:53 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:53 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.1140841995602417
14:06:53 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:53 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:53 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:53 DEBUG opendrift.models.oceandrift:582: 85 elements penetrated seafloor, lifting up
14:06:53 DEBUG opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
14:06:53 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:06:53 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
14:06:53 DEBUG opendrift.models.oceandrift:582: 82 elements penetrated seafloor, lifting up
14:06:53 DEBUG opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
14:06:53 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
14:06:53 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
14:06:53 DEBUG opendrift.models.oceandrift:582: 78 elements penetrated seafloor, lifting up
14:06:53 DEBUG opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
14:06:53 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
14:06:53 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
14:06:53 DEBUG opendrift.models.oceandrift:582: 69 elements penetrated seafloor, lifting up
14:06:53 DEBUG opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:06:53 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:06:53 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:06:53 DEBUG opendrift.models.oceandrift:582: 77 elements penetrated seafloor, lifting up
14:06:53 DEBUG opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
14:06:53 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
14:06:53 DEBUG opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
14:06:53 DEBUG opendrift.models.oceandrift:582: 62 elements penetrated seafloor, lifting up
14:06:53 DEBUG opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:53 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:53 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:53 DEBUG opendrift.models.oceandrift:582: 76 elements penetrated seafloor, lifting up
14:06:53 DEBUG opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:53 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:53 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:53 DEBUG opendrift.models.oceandrift:582: 63 elements penetrated seafloor, lifting up
14:06:53 DEBUG opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
14:06:53 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:06:53 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
14:06:53 DEBUG opendrift.models.oceandrift:582: 67 elements penetrated seafloor, lifting up
14:06:53 DEBUG opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
14:06:53 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:06:53 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
14:06:53 DEBUG opendrift.models.oceandrift:582: 62 elements penetrated seafloor, lifting up
14:06:53 DEBUG opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:06:53 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:06:53 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:06:53 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:53 DEBUG opendrift.models.basemodel:2945: 903 active elements (0 deactivated)
14:06:53 DEBUG opendrift.models.basemodel:1658: to be seeded: 9097, already seeded 903
14:06:53 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:06:53 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:53 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:53 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:53 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:53 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:53 DEBUG opendrift.models.basemodel:1253: Data needed for 938 elements
14:06:53 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:53 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 18:00:00 (before)
2023-09-01 19:00:00 (after)
14:06:53 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 18:00:00) in space (linearNDFast)
14:06:53 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:53 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:53 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:53 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:53 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:53 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:53 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.31735 (min) 12.7358 (max)
14:06:53 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:53 DEBUG opendrift.models.basemodel:1527: 938 active elements
14:06:53 DEBUG opendrift.models.basemodel:1538: 59.13472346469074 <- latitude -> 59.170220543829224
14:06:53 DEBUG opendrift.models.basemodel:1543: 10.948533742107982 <- longitude -> 11.016973136655219
14:06:53 DEBUG opendrift.models.basemodel:1548: -11.247394561767578 <- z -> 0.0
14:06:53 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:53 DEBUG opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
14:06:53 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:06:53 INFO opendrift.models.basemodel:2882: 2023-09-01 18:26:21.121579 - step 27 of 216 - 938 active elements (0 deactivated)
14:06:53 DEBUG opendrift.models.basemodel:2888: 9062 elements scheduled.
14:06:53 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:06:53 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:53 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:53 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:53 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:53 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:53 DEBUG opendrift.models.basemodel:1253: Data needed for 938 elements
14:06:53 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:53 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:53 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:53 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:53 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:53 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:53 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:53 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:53 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:53 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:53 DEBUG opendrift.models.basemodel:1253: Data needed for 938 elements
14:06:53 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:53 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 18:00:00 (before)
2023-09-01 19:00:00 (after)
14:06:54 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:54 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:54 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:54 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:54 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:54 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:54 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 20x19x5) for time after (2023-09-01 19:00:00)
14:06:54 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 18:00:00) in space (linearNDFast)
14:06:54 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:54 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 19:00:00) in space (linearNDFast)
14:06:54 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 124 elements, expanding data 1
14:06:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 124 elements, expanding data 1
14:06:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 149 elements, expanding data 1
14:06:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:06:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 149 elements, expanding data 1
14:06:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:06:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 149 elements, expanding data 1
14:06:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:06:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 149 elements, expanding data 1
14:06:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:06:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 149 elements, expanding data 1
14:06:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:06:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 492 elements, expanding data 1
14:06:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 2
14:06:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 492 elements, expanding data 1
14:06:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 2
14:06:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 492 elements, expanding data 1
14:06:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 2
14:06:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 492 elements, expanding data 1
14:06:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 2
14:06:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 492 elements, expanding data 1
14:06:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 2
14:06:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 124 elements, expanding data 1
14:06:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 124 elements, expanding data 1
14:06:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 124 elements, expanding data 1
14:06:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 124 elements, expanding data 1
14:06:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 124 elements, expanding data 1
14:06:54 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 18:00:00, weight 0.56) and
after (2023-09-01 19:00:00, weight 0.44) in time
14:06:54 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05147682171707 and -58.983037413722755 degrees.
14:06:54 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05147682171707 and -58.983037413722755 degrees.
14:06:54 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:54 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:54 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:54 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:54 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:54 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:54 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.66599 (min) 1.34804 (max)
14:06:54 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.00327 (min) 0.653353 (max)
14:06:54 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -9.0789e-05 (min) 0.000648149 (max)
14:06:54 DEBUG opendrift.models.basemodel:1524: x_wind: -3.77913 (min) 10.3599 (max)
14:06:54 DEBUG opendrift.models.basemodel:1524: y_wind: -6.04028 (min) 7.20022 (max)
14:06:54 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:54 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:54 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:54 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:54 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:06:54 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:54 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:54 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.31735 (min) 12.7358 (max)
14:06:54 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:54 DEBUG opendrift.models.basemodel:1527: 938 active elements
14:06:54 DEBUG opendrift.models.basemodel:1538: 59.13472346469074 <- latitude -> 59.170220543829224
14:06:54 DEBUG opendrift.models.basemodel:1543: 10.948533742107982 <- longitude -> 11.016973136655219
14:06:54 DEBUG opendrift.models.basemodel:1548: -11.167871475219727 <- z -> 0.0
14:06:54 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:54 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:54 DEBUG opendrift.models.physics_methods:1050: min: 0.274239, mean: 4.201750, max: 8.925230
14:06:54 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.274239, mean: 4.201750, max: 8.925230
14:06:54 DEBUG opendrift.models.basemodel:813: 58 elements hit coastline, moving back to water
14:06:54 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
14:06:54 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:06:54 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:54 DEBUG opendrift.models.physics_methods:828: Advecting 35 of 938 elements above 0.100m with wind-sheared ocean current (0.028995 m/s - 0.189669 m/s)
14:06:54 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:54 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:54 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09857326615436553
14:06:54 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:54 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:54 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:54 DEBUG opendrift.models.oceandrift:582: 98 elements penetrated seafloor, lifting up
14:06:54 DEBUG opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
14:06:54 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:06:54 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
14:06:54 DEBUG opendrift.models.oceandrift:582: 83 elements penetrated seafloor, lifting up
14:06:54 DEBUG opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:54 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:54 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:54 DEBUG opendrift.models.oceandrift:582: 86 elements penetrated seafloor, lifting up
14:06:54 DEBUG opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
14:06:54 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
14:06:54 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
14:06:54 DEBUG opendrift.models.oceandrift:582: 78 elements penetrated seafloor, lifting up
14:06:54 DEBUG opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
14:06:54 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:06:54 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
14:06:54 DEBUG opendrift.models.oceandrift:582: 88 elements penetrated seafloor, lifting up
14:06:54 DEBUG opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:06:54 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:06:54 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:06:54 DEBUG opendrift.models.oceandrift:582: 66 elements penetrated seafloor, lifting up
14:06:54 DEBUG opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
14:06:54 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
14:06:54 DEBUG opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
14:06:54 DEBUG opendrift.models.oceandrift:582: 67 elements penetrated seafloor, lifting up
14:06:54 DEBUG opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:06:54 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:06:54 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:06:54 DEBUG opendrift.models.oceandrift:582: 77 elements penetrated seafloor, lifting up
14:06:54 DEBUG opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
14:06:54 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:06:54 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
14:06:54 DEBUG opendrift.models.oceandrift:582: 71 elements penetrated seafloor, lifting up
14:06:54 DEBUG opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
14:06:54 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
14:06:54 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
14:06:54 DEBUG opendrift.models.oceandrift:582: 59 elements penetrated seafloor, lifting up
14:06:54 DEBUG opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:06:54 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:06:54 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:06:54 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:54 DEBUG opendrift.models.basemodel:2945: 938 active elements (0 deactivated)
14:06:54 DEBUG opendrift.models.basemodel:1658: to be seeded: 9062, already seeded 938
14:06:54 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:06:54 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:54 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:54 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:54 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:54 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:54 DEBUG opendrift.models.basemodel:1253: Data needed for 973 elements
14:06:54 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:54 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 18:00:00 (before)
2023-09-01 19:00:00 (after)
14:06:54 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 18:00:00) in space (linearNDFast)
14:06:54 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:54 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:54 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:54 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:54 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:54 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:54 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.57102 (min) 13.0073 (max)
14:06:54 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:54 DEBUG opendrift.models.basemodel:1527: 973 active elements
14:06:54 DEBUG opendrift.models.basemodel:1538: 59.131908249917295 <- latitude -> 59.169547870275686
14:06:54 DEBUG opendrift.models.basemodel:1543: 10.945980039785598 <- longitude -> 11.016036237075957
14:06:54 DEBUG opendrift.models.basemodel:1548: -11.157871475219727 <- z -> 0.0
14:06:54 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:54 DEBUG opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
14:06:54 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:06:54 INFO opendrift.models.basemodel:2882: 2023-09-01 18:36:21.121579 - step 28 of 216 - 973 active elements (0 deactivated)
14:06:54 DEBUG opendrift.models.basemodel:2888: 9027 elements scheduled.
14:06:54 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:06:54 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:54 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:54 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:54 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:54 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:54 DEBUG opendrift.models.basemodel:1253: Data needed for 973 elements
14:06:54 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:54 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:54 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:54 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:54 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:54 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:54 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:54 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:54 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:54 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:54 DEBUG opendrift.models.basemodel:1253: Data needed for 973 elements
14:06:54 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:54 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 18:00:00 (before)
2023-09-01 19:00:00 (after)
14:06:55 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:55 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:55 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:55 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:55 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:55 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:55 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 20x19x5) for time after (2023-09-01 19:00:00)
14:06:55 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 18:00:00) in space (linearNDFast)
14:06:55 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:55 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 19:00:00) in space (linearNDFast)
14:06:55 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 1
14:06:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 1
14:06:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 163 elements, expanding data 1
14:06:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:06:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 163 elements, expanding data 1
14:06:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:06:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 163 elements, expanding data 1
14:06:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:06:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 163 elements, expanding data 1
14:06:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:06:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 163 elements, expanding data 1
14:06:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:06:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 512 elements, expanding data 1
14:06:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 2
14:06:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 512 elements, expanding data 1
14:06:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 2
14:06:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 512 elements, expanding data 1
14:06:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 2
14:06:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 512 elements, expanding data 1
14:06:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 2
14:06:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 512 elements, expanding data 1
14:06:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 2
14:06:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 1
14:06:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 1
14:06:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 1
14:06:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 1
14:06:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 1
14:06:55 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 18:00:00, weight 0.39) and
after (2023-09-01 19:00:00, weight 0.61) in time
14:06:55 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05403051707626 and -58.98397430885871 degrees.
14:06:55 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05403051707626 and -58.98397430885871 degrees.
14:06:55 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:55 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:55 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:55 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:55 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:55 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:55 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.746456 (min) 1.16255 (max)
14:06:55 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.08641 (min) 0.560925 (max)
14:06:55 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -5.30388e-05 (min) 0.000408743 (max)
14:06:55 DEBUG opendrift.models.basemodel:1524: x_wind: -2.17811 (min) 10.0631 (max)
14:06:55 DEBUG opendrift.models.basemodel:1524: y_wind: -6.8966 (min) 7.38985 (max)
14:06:55 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:55 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:55 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:55 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:55 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:06:55 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:55 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:55 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.57102 (min) 13.0073 (max)
14:06:55 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:55 DEBUG opendrift.models.basemodel:1527: 973 active elements
14:06:55 DEBUG opendrift.models.basemodel:1538: 59.131908249917295 <- latitude -> 59.169547870275686
14:06:55 DEBUG opendrift.models.basemodel:1543: 10.945980039785598 <- longitude -> 11.016036237075957
14:06:55 DEBUG opendrift.models.basemodel:1548: -11.157871475219727 <- z -> 0.0
14:06:55 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:55 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:55 DEBUG opendrift.models.physics_methods:1050: min: 0.342561, mean: 4.122768, max: 8.663187
14:06:55 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.342561, mean: 4.122768, max: 8.663187
14:06:55 DEBUG opendrift.models.basemodel:813: 66 elements hit coastline, moving back to water
14:06:55 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
14:06:55 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:06:55 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:55 DEBUG opendrift.models.physics_methods:828: Advecting 36 of 973 elements above 0.100m with wind-sheared ocean current (0.022235 m/s - 0.189658 m/s)
14:06:55 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:55 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:55 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09287029831226348
14:06:55 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:55 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:55 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:55 DEBUG opendrift.models.oceandrift:582: 104 elements penetrated seafloor, lifting up
14:06:55 DEBUG opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
14:06:55 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
14:06:55 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
14:06:55 DEBUG opendrift.models.oceandrift:582: 79 elements penetrated seafloor, lifting up
14:06:55 DEBUG opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:55 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:55 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:55 DEBUG opendrift.models.oceandrift:582: 88 elements penetrated seafloor, lifting up
14:06:55 DEBUG opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:06:55 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:06:55 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:06:55 DEBUG opendrift.models.oceandrift:582: 82 elements penetrated seafloor, lifting up
14:06:55 DEBUG opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
14:06:55 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
14:06:55 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
14:06:55 DEBUG opendrift.models.oceandrift:582: 84 elements penetrated seafloor, lifting up
14:06:55 DEBUG opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:55 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:55 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:55 DEBUG opendrift.models.oceandrift:582: 90 elements penetrated seafloor, lifting up
14:06:55 DEBUG opendrift.models.oceandrift:600: 11 elements reached seafloor, set to bottom
14:06:55 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
14:06:55 DEBUG opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
14:06:55 DEBUG opendrift.models.oceandrift:582: 80 elements penetrated seafloor, lifting up
14:06:55 DEBUG opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:06:55 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:06:55 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:06:55 DEBUG opendrift.models.oceandrift:582: 76 elements penetrated seafloor, lifting up
14:06:55 DEBUG opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:06:55 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:06:55 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:06:55 DEBUG opendrift.models.oceandrift:582: 70 elements penetrated seafloor, lifting up
14:06:55 DEBUG opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:06:55 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:06:55 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:06:55 DEBUG opendrift.models.oceandrift:582: 69 elements penetrated seafloor, lifting up
14:06:55 DEBUG opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:06:55 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:06:55 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:06:55 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:55 DEBUG opendrift.models.basemodel:2945: 973 active elements (0 deactivated)
14:06:55 DEBUG opendrift.models.basemodel:1658: to be seeded: 9027, already seeded 973
14:06:55 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:06:55 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:55 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:55 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:55 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:55 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:55 DEBUG opendrift.models.basemodel:1253: Data needed for 1007 elements
14:06:55 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:55 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 18:00:00 (before)
2023-09-01 19:00:00 (after)
14:06:55 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 18:00:00) in space (linearNDFast)
14:06:55 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:55 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:55 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:55 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:55 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:55 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:55 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.31317 (min) 13.0141 (max)
14:06:55 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:55 DEBUG opendrift.models.basemodel:1527: 1007 active elements
14:06:55 DEBUG opendrift.models.basemodel:1538: 59.131643378892484 <- latitude -> 59.17003494542886
14:06:55 DEBUG opendrift.models.basemodel:1543: 10.944698404689246 <- longitude -> 11.020782197131847
14:06:55 DEBUG opendrift.models.basemodel:1548: -11.592550506591797 <- z -> 0.0
14:06:55 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:55 DEBUG opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
14:06:55 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:06:55 INFO opendrift.models.basemodel:2882: 2023-09-01 18:46:21.121579 - step 29 of 216 - 1007 active elements (0 deactivated)
14:06:55 DEBUG opendrift.models.basemodel:2888: 8993 elements scheduled.
14:06:55 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:06:55 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:55 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:55 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:55 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:55 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:55 DEBUG opendrift.models.basemodel:1253: Data needed for 1007 elements
14:06:55 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:55 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:55 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:55 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:55 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:55 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:55 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:55 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:55 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:55 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:55 DEBUG opendrift.models.basemodel:1253: Data needed for 1007 elements
14:06:55 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:55 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 18:00:00 (before)
2023-09-01 19:00:00 (after)
14:06:56 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:56 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:56 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:56 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:56 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:56 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:56 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 20x19x5) for time after (2023-09-01 19:00:00)
14:06:56 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 18:00:00) in space (linearNDFast)
14:06:56 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:56 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 19:00:00) in space (linearNDFast)
14:06:56 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 157 elements, expanding data 1
14:06:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 157 elements, expanding data 1
14:06:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 185 elements, expanding data 1
14:06:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:06:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 185 elements, expanding data 1
14:06:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:06:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 185 elements, expanding data 1
14:06:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:06:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 185 elements, expanding data 1
14:06:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:06:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 185 elements, expanding data 1
14:06:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:06:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 532 elements, expanding data 1
14:06:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 2
14:06:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 532 elements, expanding data 1
14:06:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 2
14:06:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 532 elements, expanding data 1
14:06:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 2
14:06:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 532 elements, expanding data 1
14:06:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 2
14:06:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 532 elements, expanding data 1
14:06:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 2
14:06:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 157 elements, expanding data 1
14:06:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 157 elements, expanding data 1
14:06:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 157 elements, expanding data 1
14:06:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 157 elements, expanding data 1
14:06:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 157 elements, expanding data 1
14:06:56 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 18:00:00, weight 0.23) and
after (2023-09-01 19:00:00, weight 0.77) in time
14:06:56 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05531215137599 and -58.97922835999225 degrees.
14:06:56 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05531215137599 and -58.97922835999225 degrees.
14:06:56 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:56 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:56 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:56 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:56 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:56 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:56 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.657654 (min) 1.30243 (max)
14:06:56 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.1093 (min) 0.732723 (max)
14:06:56 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -8.6356e-05 (min) 0.000336032 (max)
14:06:56 DEBUG opendrift.models.basemodel:1524: x_wind: -2.18825 (min) 9.76545 (max)
14:06:56 DEBUG opendrift.models.basemodel:1524: y_wind: -8.73333 (min) 7.09814 (max)
14:06:56 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:56 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:56 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:56 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:56 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:06:56 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:56 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:56 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.31317 (min) 13.0141 (max)
14:06:56 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:56 DEBUG opendrift.models.basemodel:1527: 1007 active elements
14:06:56 DEBUG opendrift.models.basemodel:1538: 59.131643378892484 <- latitude -> 59.17003494542886
14:06:56 DEBUG opendrift.models.basemodel:1543: 10.944698404689246 <- longitude -> 11.020782197131847
14:06:56 DEBUG opendrift.models.basemodel:1548: -11.343729404638163 <- z -> 0.0
14:06:56 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:56 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:56 DEBUG opendrift.models.physics_methods:1050: min: 0.268832, mean: 3.987441, max: 8.647289
14:06:56 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.268832, mean: 3.987441, max: 8.647289
14:06:56 DEBUG opendrift.models.basemodel:813: 54 elements hit coastline, moving back to water
14:06:56 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:06:56 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:06:56 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:56 DEBUG opendrift.models.physics_methods:828: Advecting 36 of 1007 elements above 0.100m with wind-sheared ocean current (0.006259 m/s - 0.171896 m/s)
14:06:56 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:56 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:56 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09252976148517608
14:06:56 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:56 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:56 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:56 DEBUG opendrift.models.oceandrift:582: 97 elements penetrated seafloor, lifting up
14:06:56 DEBUG opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
14:06:56 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
14:06:56 DEBUG opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
14:06:56 DEBUG opendrift.models.oceandrift:582: 83 elements penetrated seafloor, lifting up
14:06:56 DEBUG opendrift.models.oceandrift:600: 11 elements reached seafloor, set to bottom
14:06:56 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
14:06:56 DEBUG opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
14:06:56 DEBUG opendrift.models.oceandrift:582: 86 elements penetrated seafloor, lifting up
14:06:56 DEBUG opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:06:56 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:06:56 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:06:56 DEBUG opendrift.models.oceandrift:582: 74 elements penetrated seafloor, lifting up
14:06:56 DEBUG opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:06:56 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:06:56 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:06:56 DEBUG opendrift.models.oceandrift:582: 73 elements penetrated seafloor, lifting up
14:06:56 DEBUG opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:56 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:56 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:56 DEBUG opendrift.models.oceandrift:582: 69 elements penetrated seafloor, lifting up
14:06:56 DEBUG opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
14:06:56 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
14:06:56 DEBUG opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
14:06:56 DEBUG opendrift.models.oceandrift:582: 75 elements penetrated seafloor, lifting up
14:06:56 DEBUG opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
14:06:56 DEBUG opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
14:06:56 DEBUG opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
14:06:56 DEBUG opendrift.models.oceandrift:582: 70 elements penetrated seafloor, lifting up
14:06:56 DEBUG opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:06:56 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:06:56 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:06:56 DEBUG opendrift.models.oceandrift:582: 74 elements penetrated seafloor, lifting up
14:06:56 DEBUG opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:56 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:56 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:56 DEBUG opendrift.models.oceandrift:582: 66 elements penetrated seafloor, lifting up
14:06:56 DEBUG opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
14:06:56 DEBUG opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
14:06:56 DEBUG opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
14:06:56 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:56 DEBUG opendrift.models.basemodel:2945: 1007 active elements (0 deactivated)
14:06:56 DEBUG opendrift.models.basemodel:1658: to be seeded: 8993, already seeded 1007
14:06:56 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:06:56 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:56 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:56 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:56 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:56 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:56 DEBUG opendrift.models.basemodel:1253: Data needed for 1042 elements
14:06:56 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:56 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 18:00:00 (before)
2023-09-01 19:00:00 (after)
14:06:56 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 18:00:00) in space (linearNDFast)
14:06:56 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:56 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:56 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:56 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:56 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:56 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:56 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.07731 (min) 13.1042 (max)
14:06:56 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:56 DEBUG opendrift.models.basemodel:1527: 1042 active elements
14:06:56 DEBUG opendrift.models.basemodel:1538: 59.13099060540087 <- latitude -> 59.170899022366065
14:06:56 DEBUG opendrift.models.basemodel:1543: 10.94820680295457 <- longitude -> 11.021501504702103
14:06:56 DEBUG opendrift.models.basemodel:1548: -12.53642397154129 <- z -> 0.0
14:06:56 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:56 DEBUG opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
14:06:56 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:06:56 INFO opendrift.models.basemodel:2882: 2023-09-01 18:56:21.121579 - step 30 of 216 - 1042 active elements (0 deactivated)
14:06:56 DEBUG opendrift.models.basemodel:2888: 8958 elements scheduled.
14:06:56 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:06:56 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:56 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:56 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:56 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:56 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:56 DEBUG opendrift.models.basemodel:1253: Data needed for 1042 elements
14:06:56 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:56 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:56 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:56 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:56 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:56 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:56 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:56 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:56 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:56 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:56 DEBUG opendrift.models.basemodel:1253: Data needed for 1042 elements
14:06:56 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:56 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 18:00:00 (before)
2023-09-01 19:00:00 (after)
14:06:57 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:57 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:57 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:57 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:57 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:57 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:57 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 20x20x5) for time after (2023-09-01 19:00:00)
14:06:57 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 18:00:00) in space (linearNDFast)
14:06:57 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:57 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 19:00:00) in space (linearNDFast)
14:06:57 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 174 elements, expanding data 1
14:06:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 174 elements, expanding data 1
14:06:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 200 elements, expanding data 1
14:06:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:06:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 200 elements, expanding data 1
14:06:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:06:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 200 elements, expanding data 1
14:06:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:06:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 200 elements, expanding data 1
14:06:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:06:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 200 elements, expanding data 1
14:06:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:06:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 545 elements, expanding data 1
14:06:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
14:06:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 545 elements, expanding data 1
14:06:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
14:06:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 545 elements, expanding data 1
14:06:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
14:06:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 545 elements, expanding data 1
14:06:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
14:06:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 545 elements, expanding data 1
14:06:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
14:06:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 174 elements, expanding data 1
14:06:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 174 elements, expanding data 1
14:06:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 174 elements, expanding data 1
14:06:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 174 elements, expanding data 1
14:06:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 174 elements, expanding data 1
14:06:57 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 18:00:00, weight 0.06) and
after (2023-09-01 19:00:00, weight 0.94) in time
14:06:57 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.051803755763196 and -58.97850903909803 degrees.
14:06:57 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.051803755763196 and -58.97850903909803 degrees.
14:06:57 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:57 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:57 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:57 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:57 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:57 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:57 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.623847 (min) 1.11824 (max)
14:06:57 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.946133 (min) 0.560097 (max)
14:06:57 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -5.913e-05 (min) 0.000290536 (max)
14:06:57 DEBUG opendrift.models.basemodel:1524: x_wind: -2.9588 (min) 10.373 (max)
14:06:57 DEBUG opendrift.models.basemodel:1524: y_wind: -5.58306 (min) 8.64458 (max)
14:06:57 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:57 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:57 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:57 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:57 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:06:57 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:57 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:57 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.07731 (min) 13.1042 (max)
14:06:57 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:57 DEBUG opendrift.models.basemodel:1527: 1042 active elements
14:06:57 DEBUG opendrift.models.basemodel:1538: 59.13099060540087 <- latitude -> 59.170899022366065
14:06:57 DEBUG opendrift.models.basemodel:1543: 10.94820680295457 <- longitude -> 11.021501504702103
14:06:57 DEBUG opendrift.models.basemodel:1548: -12.53642397154129 <- z -> 0.0
14:06:57 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:57 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:57 DEBUG opendrift.models.physics_methods:1050: min: 0.307058, mean: 3.872049, max: 9.053710
14:06:57 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.307058, mean: 3.872049, max: 9.053710
14:06:57 DEBUG opendrift.models.basemodel:813: 58 elements hit coastline, moving back to water
14:06:57 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:06:57 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:06:57 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:57 DEBUG opendrift.models.physics_methods:828: Advecting 38 of 1042 elements above 0.100m with wind-sheared ocean current (0.003227 m/s - 0.165225 m/s)
14:06:57 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:57 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:57 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.1014315385661888
14:06:57 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:57 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:57 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:57 DEBUG opendrift.models.oceandrift:582: 97 elements penetrated seafloor, lifting up
14:06:57 DEBUG opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:06:57 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:06:57 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:06:57 DEBUG opendrift.models.oceandrift:582: 78 elements penetrated seafloor, lifting up
14:06:57 DEBUG opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:06:57 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:06:57 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:06:57 DEBUG opendrift.models.oceandrift:582: 82 elements penetrated seafloor, lifting up
14:06:57 DEBUG opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:06:57 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:06:57 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:06:57 DEBUG opendrift.models.oceandrift:582: 76 elements penetrated seafloor, lifting up
14:06:57 DEBUG opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
14:06:57 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
14:06:57 DEBUG opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
14:06:57 DEBUG opendrift.models.oceandrift:582: 59 elements penetrated seafloor, lifting up
14:06:57 DEBUG opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
14:06:57 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:06:57 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
14:06:57 DEBUG opendrift.models.oceandrift:582: 64 elements penetrated seafloor, lifting up
14:06:57 DEBUG opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:06:57 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:06:57 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:06:57 DEBUG opendrift.models.oceandrift:582: 61 elements penetrated seafloor, lifting up
14:06:57 DEBUG opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:57 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:57 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:57 DEBUG opendrift.models.oceandrift:582: 63 elements penetrated seafloor, lifting up
14:06:57 DEBUG opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
14:06:57 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:06:57 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
14:06:57 DEBUG opendrift.models.oceandrift:582: 55 elements penetrated seafloor, lifting up
14:06:57 DEBUG opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
14:06:57 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
14:06:57 DEBUG opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
14:06:57 DEBUG opendrift.models.oceandrift:582: 69 elements penetrated seafloor, lifting up
14:06:57 DEBUG opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
14:06:57 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:06:57 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
14:06:57 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:57 DEBUG opendrift.models.basemodel:2945: 1042 active elements (0 deactivated)
14:06:57 DEBUG opendrift.models.basemodel:1658: to be seeded: 8958, already seeded 1042
14:06:57 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:06:57 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:57 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:57 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:57 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:57 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:57 DEBUG opendrift.models.basemodel:1253: Data needed for 1077 elements
14:06:57 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:57 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 19:00:00 (before)
2023-09-01 20:00:00 (after)
14:06:57 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 19:00:00) in space (linearNDFast)
14:06:57 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:57 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:57 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:57 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:57 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:57 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:57 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.07226 (min) 13.0759 (max)
14:06:57 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:57 DEBUG opendrift.models.basemodel:1527: 1077 active elements
14:06:57 DEBUG opendrift.models.basemodel:1538: 59.13080271067209 <- latitude -> 59.17118355038497
14:06:57 DEBUG opendrift.models.basemodel:1543: 10.947088759646618 <- longitude -> 11.023547528211603
14:06:57 DEBUG opendrift.models.basemodel:1548: -13.094157447814942 <- z -> 0.0
14:06:57 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:57 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
14:06:57 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:06:57 INFO opendrift.models.basemodel:2882: 2023-09-01 19:06:21.121579 - step 31 of 216 - 1077 active elements (0 deactivated)
14:06:57 DEBUG opendrift.models.basemodel:2888: 8923 elements scheduled.
14:06:57 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:06:57 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:57 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:57 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:57 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:57 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:57 DEBUG opendrift.models.basemodel:1253: Data needed for 1077 elements
14:06:57 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:57 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:57 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:57 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:57 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:57 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:57 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:57 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:57 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:57 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:57 DEBUG opendrift.models.basemodel:1253: Data needed for 1077 elements
14:06:57 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:57 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 19:00:00 (before)
2023-09-01 20:00:00 (after)
14:06:58 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:58 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:58 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:58 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:58 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:58 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:58 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 20x20x5) for time after (2023-09-01 20:00:00)
14:06:58 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 19:00:00) in space (linearNDFast)
14:06:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:58 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 20:00:00) in space (linearNDFast)
14:06:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 196 elements, expanding data 1
14:06:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 196 elements, expanding data 1
14:06:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 219 elements, expanding data 1
14:06:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:06:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 219 elements, expanding data 1
14:06:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:06:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 219 elements, expanding data 1
14:06:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:06:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 219 elements, expanding data 1
14:06:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:06:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 219 elements, expanding data 1
14:06:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:06:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 583 elements, expanding data 1
14:06:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 41 elements, expanding data 2
14:06:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 583 elements, expanding data 1
14:06:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 41 elements, expanding data 2
14:06:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 583 elements, expanding data 1
14:06:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 41 elements, expanding data 2
14:06:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 583 elements, expanding data 1
14:06:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 41 elements, expanding data 2
14:06:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 583 elements, expanding data 1
14:06:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 41 elements, expanding data 2
14:06:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 196 elements, expanding data 1
14:06:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 196 elements, expanding data 1
14:06:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 196 elements, expanding data 1
14:06:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 196 elements, expanding data 1
14:06:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 196 elements, expanding data 1
14:06:58 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 19:00:00, weight 0.89) and
after (2023-09-01 20:00:00, weight 0.11) in time
14:06:58 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05292180289869 and -58.97646301181007 degrees.
14:06:58 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05292180289869 and -58.97646301181007 degrees.
14:06:58 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:58 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:58 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:58 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:58 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:58 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:58 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.63675 (min) 1.15109 (max)
14:06:58 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.909917 (min) 0.516995 (max)
14:06:58 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -7.16286e-05 (min) 0.000290927 (max)
14:06:58 DEBUG opendrift.models.basemodel:1524: x_wind: -2.86289 (min) 10.0104 (max)
14:06:58 DEBUG opendrift.models.basemodel:1524: y_wind: -6.10331 (min) 6.59715 (max)
14:06:58 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:58 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:58 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:58 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:58 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:06:58 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:58 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:58 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.07226 (min) 13.0759 (max)
14:06:58 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:58 DEBUG opendrift.models.basemodel:1527: 1077 active elements
14:06:58 DEBUG opendrift.models.basemodel:1538: 59.13080271067209 <- latitude -> 59.17118355038497
14:06:58 DEBUG opendrift.models.basemodel:1543: 10.947088759646618 <- longitude -> 11.023547528211603
14:06:58 DEBUG opendrift.models.basemodel:1548: -12.858721961975098 <- z -> 0.0
14:06:58 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:58 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:58 DEBUG opendrift.models.physics_methods:1050: min: 0.203764, mean: 3.850101, max: 8.783433
14:06:58 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.203764, mean: 3.850101, max: 8.783433
14:06:58 DEBUG opendrift.models.basemodel:813: 69 elements hit coastline, moving back to water
14:06:58 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:06:58 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:06:58 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:58 DEBUG opendrift.models.physics_methods:828: Advecting 35 of 1077 elements above 0.100m with wind-sheared ocean current (0.013422 m/s - 0.167524 m/s)
14:06:58 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:58 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:58 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09546616774852752
14:06:58 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:58 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:58 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:58 DEBUG opendrift.models.oceandrift:582: 112 elements penetrated seafloor, lifting up
14:06:58 DEBUG opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:06:58 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:06:58 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:06:58 DEBUG opendrift.models.oceandrift:582: 93 elements penetrated seafloor, lifting up
14:06:58 DEBUG opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:06:58 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:06:58 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:06:58 DEBUG opendrift.models.oceandrift:582: 98 elements penetrated seafloor, lifting up
14:06:58 DEBUG opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
14:06:58 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
14:06:58 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
14:06:58 DEBUG opendrift.models.oceandrift:582: 76 elements penetrated seafloor, lifting up
14:06:58 DEBUG opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:06:58 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:06:58 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:06:58 DEBUG opendrift.models.oceandrift:582: 79 elements penetrated seafloor, lifting up
14:06:58 DEBUG opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
14:06:58 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
14:06:58 DEBUG opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
14:06:58 DEBUG opendrift.models.oceandrift:582: 86 elements penetrated seafloor, lifting up
14:06:58 DEBUG opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
14:06:58 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
14:06:58 DEBUG opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
14:06:58 DEBUG opendrift.models.oceandrift:582: 82 elements penetrated seafloor, lifting up
14:06:58 DEBUG opendrift.models.oceandrift:600: 11 elements reached seafloor, set to bottom
14:06:58 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
14:06:58 DEBUG opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
14:06:58 DEBUG opendrift.models.oceandrift:582: 81 elements penetrated seafloor, lifting up
14:06:58 DEBUG opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:06:58 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:06:58 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:06:58 DEBUG opendrift.models.oceandrift:582: 94 elements penetrated seafloor, lifting up
14:06:58 DEBUG opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:06:58 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:06:58 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:06:58 DEBUG opendrift.models.oceandrift:582: 89 elements penetrated seafloor, lifting up
14:06:58 DEBUG opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
14:06:58 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:06:58 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
14:06:58 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:58 DEBUG opendrift.models.basemodel:2945: 1077 active elements (0 deactivated)
14:06:58 DEBUG opendrift.models.basemodel:1658: to be seeded: 8923, already seeded 1077
14:06:58 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:06:58 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:58 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:58 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:58 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:58 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:58 DEBUG opendrift.models.basemodel:1253: Data needed for 1112 elements
14:06:58 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:58 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 19:00:00 (before)
2023-09-01 20:00:00 (after)
14:06:58 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 19:00:00) in space (linearNDFast)
14:06:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:58 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:58 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:58 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:58 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:58 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:58 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.09376 (min) 13.0113 (max)
14:06:58 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:58 DEBUG opendrift.models.basemodel:1527: 1112 active elements
14:06:58 DEBUG opendrift.models.basemodel:1538: 59.12760662848937 <- latitude -> 59.171062646554546
14:06:58 DEBUG opendrift.models.basemodel:1543: 10.947484923950032 <- longitude -> 11.024057663601793
14:06:58 DEBUG opendrift.models.basemodel:1548: -12.206647808608574 <- z -> 0.0
14:06:58 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:58 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
14:06:58 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:06:58 INFO opendrift.models.basemodel:2882: 2023-09-01 19:16:21.121579 - step 32 of 216 - 1112 active elements (0 deactivated)
14:06:58 DEBUG opendrift.models.basemodel:2888: 8888 elements scheduled.
14:06:58 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:06:58 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:58 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:58 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:58 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:58 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:58 DEBUG opendrift.models.basemodel:1253: Data needed for 1112 elements
14:06:58 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:58 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:58 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:58 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:58 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:58 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:58 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:58 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:58 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:58 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:58 DEBUG opendrift.models.basemodel:1253: Data needed for 1112 elements
14:06:58 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:58 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 19:00:00 (before)
2023-09-01 20:00:00 (after)
14:06:59 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:59 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:59 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:59 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:59 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:59 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:59 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 20x20x5) for time after (2023-09-01 20:00:00)
14:06:59 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 19:00:00) in space (linearNDFast)
14:06:59 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:59 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 20:00:00) in space (linearNDFast)
14:06:59 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 212 elements, expanding data 1
14:06:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 212 elements, expanding data 1
14:06:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 240 elements, expanding data 1
14:06:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:06:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 240 elements, expanding data 1
14:06:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:06:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 240 elements, expanding data 1
14:06:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:06:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 240 elements, expanding data 1
14:06:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:06:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 240 elements, expanding data 1
14:06:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:06:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 599 elements, expanding data 1
14:06:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 2
14:06:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 599 elements, expanding data 1
14:06:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 2
14:06:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 599 elements, expanding data 1
14:06:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 2
14:06:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 599 elements, expanding data 1
14:06:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 2
14:06:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 599 elements, expanding data 1
14:06:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 2
14:06:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 212 elements, expanding data 1
14:06:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 212 elements, expanding data 1
14:06:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 212 elements, expanding data 1
14:06:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 212 elements, expanding data 1
14:06:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 212 elements, expanding data 1
14:06:59 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 19:00:00, weight 0.73) and
after (2023-09-01 20:00:00, weight 0.27) in time
14:06:59 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05252563715043 and -58.97595287799881 degrees.
14:06:59 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05252563715043 and -58.97595287799881 degrees.
14:06:59 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:59 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:59 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:59 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:59 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:59 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:59 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.709724 (min) 1.39515 (max)
14:06:59 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.01295 (min) 0.594055 (max)
14:06:59 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -4.00458e-05 (min) 0.000265485 (max)
14:06:59 DEBUG opendrift.models.basemodel:1524: x_wind: -3.36044 (min) 10.057 (max)
14:06:59 DEBUG opendrift.models.basemodel:1524: y_wind: -6.2755 (min) 7.07608 (max)
14:06:59 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:59 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:59 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:59 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:59 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:06:59 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:59 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:59 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.09376 (min) 13.0113 (max)
14:06:59 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:59 DEBUG opendrift.models.basemodel:1527: 1112 active elements
14:06:59 DEBUG opendrift.models.basemodel:1538: 59.12760662848937 <- latitude -> 59.171062646554546
14:06:59 DEBUG opendrift.models.basemodel:1543: 10.947484923950032 <- longitude -> 11.024057663601793
14:06:59 DEBUG opendrift.models.basemodel:1548: -12.206647808608574 <- z -> 0.0
14:06:59 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:59 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:59 DEBUG opendrift.models.physics_methods:1050: min: 0.211166, mean: 3.799810, max: 8.816274
14:06:59 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.211166, mean: 3.799810, max: 8.816274
14:06:59 DEBUG opendrift.models.basemodel:813: 58 elements hit coastline, moving back to water
14:06:59 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:59 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:06:59 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:59 DEBUG opendrift.models.physics_methods:828: Advecting 36 of 1112 elements above 0.100m with wind-sheared ocean current (0.007253 m/s - 0.145963 m/s)
14:06:59 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:59 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:59 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09618136041028975
14:06:59 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:59 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:59 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:59 DEBUG opendrift.models.oceandrift:582: 117 elements penetrated seafloor, lifting up
14:06:59 DEBUG opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:59 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:59 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:59 DEBUG opendrift.models.oceandrift:582: 101 elements penetrated seafloor, lifting up
14:06:59 DEBUG opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
14:06:59 DEBUG opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
14:06:59 DEBUG opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
14:06:59 DEBUG opendrift.models.oceandrift:582: 87 elements penetrated seafloor, lifting up
14:06:59 DEBUG opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:06:59 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:06:59 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:06:59 DEBUG opendrift.models.oceandrift:582: 102 elements penetrated seafloor, lifting up
14:06:59 DEBUG opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:06:59 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:06:59 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:06:59 DEBUG opendrift.models.oceandrift:582: 84 elements penetrated seafloor, lifting up
14:06:59 DEBUG opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:06:59 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:06:59 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:06:59 DEBUG opendrift.models.oceandrift:582: 88 elements penetrated seafloor, lifting up
14:06:59 DEBUG opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
14:06:59 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
14:06:59 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
14:06:59 DEBUG opendrift.models.oceandrift:582: 74 elements penetrated seafloor, lifting up
14:06:59 DEBUG opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:59 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:59 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:59 DEBUG opendrift.models.oceandrift:582: 90 elements penetrated seafloor, lifting up
14:06:59 DEBUG opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:06:59 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:06:59 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:06:59 DEBUG opendrift.models.oceandrift:582: 83 elements penetrated seafloor, lifting up
14:06:59 DEBUG opendrift.models.oceandrift:600: 11 elements reached seafloor, set to bottom
14:06:59 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
14:06:59 DEBUG opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
14:06:59 DEBUG opendrift.models.oceandrift:582: 70 elements penetrated seafloor, lifting up
14:06:59 DEBUG opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:06:59 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:06:59 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:06:59 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:59 DEBUG opendrift.models.basemodel:2945: 1112 active elements (0 deactivated)
14:06:59 DEBUG opendrift.models.basemodel:1658: to be seeded: 8888, already seeded 1112
14:06:59 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:06:59 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:59 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:59 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:59 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:59 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:59 DEBUG opendrift.models.basemodel:1253: Data needed for 1146 elements
14:06:59 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:59 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 19:00:00 (before)
2023-09-01 20:00:00 (after)
14:06:59 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 19:00:00) in space (linearNDFast)
14:06:59 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:59 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:59 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:59 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:06:59 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:59 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:59 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.44049 (min) 13.2556 (max)
14:06:59 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:06:59 DEBUG opendrift.models.basemodel:1527: 1146 active elements
14:06:59 DEBUG opendrift.models.basemodel:1538: 59.12623972203216 <- latitude -> 59.17286291297664
14:06:59 DEBUG opendrift.models.basemodel:1543: 10.945735007646382 <- longitude -> 11.02056192277767
14:06:59 DEBUG opendrift.models.basemodel:1548: -12.812218894958496 <- z -> 0.0
14:06:59 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:06:59 DEBUG opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
14:06:59 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:06:59 INFO opendrift.models.basemodel:2882: 2023-09-01 19:26:21.121579 - step 33 of 216 - 1146 active elements (0 deactivated)
14:06:59 DEBUG opendrift.models.basemodel:2888: 8854 elements scheduled.
14:06:59 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:06:59 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:59 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:59 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:59 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:59 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:59 DEBUG opendrift.models.basemodel:1253: Data needed for 1146 elements
14:06:59 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:59 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:59 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:59 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:59 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:59 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:06:59 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:59 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:06:59 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:59 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:06:59 DEBUG opendrift.models.basemodel:1253: Data needed for 1146 elements
14:06:59 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:59 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 19:00:00 (before)
2023-09-01 20:00:00 (after)
14:07:00 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:00 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:00 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:00 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:00 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:00 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:00 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 20x20x5) for time after (2023-09-01 20:00:00)
14:07:00 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 19:00:00) in space (linearNDFast)
14:07:00 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:00 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 20:00:00) in space (linearNDFast)
14:07:00 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 1
14:07:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 1
14:07:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 255 elements, expanding data 1
14:07:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:07:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 255 elements, expanding data 1
14:07:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:07:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 255 elements, expanding data 1
14:07:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:07:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 255 elements, expanding data 1
14:07:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:07:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 255 elements, expanding data 1
14:07:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:07:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 627 elements, expanding data 1
14:07:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 2
14:07:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 627 elements, expanding data 1
14:07:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 2
14:07:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 627 elements, expanding data 1
14:07:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 2
14:07:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 627 elements, expanding data 1
14:07:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 2
14:07:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 627 elements, expanding data 1
14:07:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 2
14:07:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 1
14:07:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 1
14:07:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 1
14:07:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 1
14:07:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 1
14:07:00 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 19:00:00, weight 0.56) and
after (2023-09-01 20:00:00, weight 0.44) in time
14:07:00 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05427554527975 and -58.97944862855199 degrees.
14:07:00 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05427554527975 and -58.97944862855199 degrees.
14:07:00 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:00 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:00 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:00 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:00 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:00 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:00 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.675132 (min) 1.15627 (max)
14:07:00 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.0204 (min) 0.598285 (max)
14:07:00 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -5.25425e-05 (min) 0.000330483 (max)
14:07:00 DEBUG opendrift.models.basemodel:1524: x_wind: -2.44387 (min) 10.0251 (max)
14:07:00 DEBUG opendrift.models.basemodel:1524: y_wind: -6.62364 (min) 8.08603 (max)
14:07:00 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:00 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:00 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:00 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:00 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:00 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:00 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:00 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.44049 (min) 13.2556 (max)
14:07:00 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:00 DEBUG opendrift.models.basemodel:1527: 1146 active elements
14:07:00 DEBUG opendrift.models.basemodel:1538: 59.12623972203216 <- latitude -> 59.17286291297664
14:07:00 DEBUG opendrift.models.basemodel:1543: 10.945735007646382 <- longitude -> 11.02056192277767
14:07:00 DEBUG opendrift.models.basemodel:1548: -12.764876365661621 <- z -> 0.0
14:07:00 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:00 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:00 DEBUG opendrift.models.physics_methods:1050: min: 0.021719, mean: 3.677935, max: 9.249475
14:07:00 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.021719, mean: 3.677935, max: 9.249475
14:07:00 DEBUG opendrift.models.basemodel:813: 68 elements hit coastline, moving back to water
14:07:00 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
14:07:00 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:00 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:00 DEBUG opendrift.models.physics_methods:828: Advecting 34 of 1146 elements above 0.100m with wind-sheared ocean current (0.013619 m/s - 0.167530 m/s)
14:07:00 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:00 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:00 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10586519987686156
14:07:00 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:00 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:00 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:00 DEBUG opendrift.models.oceandrift:582: 116 elements penetrated seafloor, lifting up
14:07:00 DEBUG opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:07:00 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:07:00 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:07:00 DEBUG opendrift.models.oceandrift:582: 91 elements penetrated seafloor, lifting up
14:07:00 DEBUG opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
14:07:00 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:07:00 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
14:07:00 DEBUG opendrift.models.oceandrift:582: 91 elements penetrated seafloor, lifting up
14:07:00 DEBUG opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:07:00 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:07:00 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:07:00 DEBUG opendrift.models.oceandrift:582: 83 elements penetrated seafloor, lifting up
14:07:00 DEBUG opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
14:07:00 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
14:07:00 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
14:07:00 DEBUG opendrift.models.oceandrift:582: 87 elements penetrated seafloor, lifting up
14:07:00 DEBUG opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
14:07:00 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
14:07:00 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
14:07:00 DEBUG opendrift.models.oceandrift:582: 85 elements penetrated seafloor, lifting up
14:07:00 DEBUG opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:07:00 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:00 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:07:00 DEBUG opendrift.models.oceandrift:582: 88 elements penetrated seafloor, lifting up
14:07:00 DEBUG opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
14:07:00 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:07:00 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
14:07:00 DEBUG opendrift.models.oceandrift:582: 92 elements penetrated seafloor, lifting up
14:07:00 DEBUG opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
14:07:00 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:07:00 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
14:07:00 DEBUG opendrift.models.oceandrift:582: 77 elements penetrated seafloor, lifting up
14:07:00 DEBUG opendrift.models.oceandrift:600: 11 elements reached seafloor, set to bottom
14:07:00 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
14:07:00 DEBUG opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
14:07:00 DEBUG opendrift.models.oceandrift:582: 82 elements penetrated seafloor, lifting up
14:07:00 DEBUG opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:07:00 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:07:00 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:07:00 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:00 DEBUG opendrift.models.basemodel:2945: 1146 active elements (0 deactivated)
14:07:00 DEBUG opendrift.models.basemodel:1658: to be seeded: 8854, already seeded 1146
14:07:00 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:07:00 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:00 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:00 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:00 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:00 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:00 DEBUG opendrift.models.basemodel:1253: Data needed for 1181 elements
14:07:00 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:00 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 19:00:00 (before)
2023-09-01 20:00:00 (after)
14:07:00 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 19:00:00) in space (linearNDFast)
14:07:00 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:00 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:00 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:00 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:00 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:00 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:00 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.12996 (min) 13.5407 (max)
14:07:00 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:00 DEBUG opendrift.models.basemodel:1527: 1181 active elements
14:07:00 DEBUG opendrift.models.basemodel:1538: 59.12394149737817 <- latitude -> 59.173359538028315
14:07:00 DEBUG opendrift.models.basemodel:1543: 10.944212520557873 <- longitude -> 11.022094914688031
14:07:00 DEBUG opendrift.models.basemodel:1548: -12.945646286010742 <- z -> 0.0
14:07:00 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:00 DEBUG opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
14:07:00 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:00 INFO opendrift.models.basemodel:2882: 2023-09-01 19:36:21.121579 - step 34 of 216 - 1181 active elements (0 deactivated)
14:07:00 DEBUG opendrift.models.basemodel:2888: 8819 elements scheduled.
14:07:00 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:00 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:00 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:00 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:00 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:00 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:00 DEBUG opendrift.models.basemodel:1253: Data needed for 1181 elements
14:07:00 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:00 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:00 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:00 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:00 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:00 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:00 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:00 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:00 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:00 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:00 DEBUG opendrift.models.basemodel:1253: Data needed for 1181 elements
14:07:00 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:00 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 19:00:00 (before)
2023-09-01 20:00:00 (after)
14:07:00 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:00 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:00 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:00 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:00 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:00 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:00 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 20x20x5) for time after (2023-09-01 20:00:00)
14:07:00 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 19:00:00) in space (linearNDFast)
14:07:00 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:00 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 20:00:00) in space (linearNDFast)
14:07:00 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 1
14:07:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 1
14:07:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 282 elements, expanding data 1
14:07:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 282 elements, expanding data 1
14:07:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 282 elements, expanding data 1
14:07:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 282 elements, expanding data 1
14:07:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 282 elements, expanding data 1
14:07:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 672 elements, expanding data 1
14:07:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 2
14:07:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 672 elements, expanding data 1
14:07:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 2
14:07:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 672 elements, expanding data 1
14:07:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 2
14:07:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 672 elements, expanding data 1
14:07:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 2
14:07:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 672 elements, expanding data 1
14:07:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 2
14:07:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 1
14:07:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 1
14:07:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 1
14:07:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 1
14:07:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 1
14:07:00 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 19:00:00, weight 0.39) and
after (2023-09-01 20:00:00, weight 0.61) in time
14:07:00 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05579802542906 and -58.977915628307734 degrees.
14:07:00 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05579802542906 and -58.977915628307734 degrees.
14:07:00 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:00 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:00 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:00 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:00 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:00 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:00 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.633202 (min) 1.2243 (max)
14:07:00 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.957862 (min) 0.585562 (max)
14:07:00 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -3.76268e-05 (min) 0.000414311 (max)
14:07:00 DEBUG opendrift.models.basemodel:1524: x_wind: -2.90978 (min) 9.38301 (max)
14:07:00 DEBUG opendrift.models.basemodel:1524: y_wind: -5.92774 (min) 6.5294 (max)
14:07:00 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:00 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:00 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:00 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:00 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:00 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:00 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:00 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.12996 (min) 13.5407 (max)
14:07:00 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:00 DEBUG opendrift.models.basemodel:1527: 1181 active elements
14:07:00 DEBUG opendrift.models.basemodel:1538: 59.12394149737817 <- latitude -> 59.173359538028315
14:07:00 DEBUG opendrift.models.basemodel:1543: 10.944212520557873 <- longitude -> 11.022094914688031
14:07:00 DEBUG opendrift.models.basemodel:1548: -12.945646286010742 <- z -> 0.0
14:07:00 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:00 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:00 DEBUG opendrift.models.physics_methods:1050: min: 0.306255, mean: 3.625151, max: 8.435306
14:07:00 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.306255, mean: 3.625151, max: 8.435306
14:07:00 DEBUG opendrift.models.basemodel:813: 79 elements hit coastline, moving back to water
14:07:00 DEBUG opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
14:07:00 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:00 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:00 DEBUG opendrift.models.physics_methods:828: Advecting 35 of 1181 elements above 0.100m with wind-sheared ocean current (0.020537 m/s - 0.185298 m/s)
14:07:00 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:00 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:00 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.0880489515019226
14:07:00 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:00 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:00 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:00 DEBUG opendrift.models.oceandrift:582: 104 elements penetrated seafloor, lifting up
14:07:00 DEBUG opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
14:07:00 DEBUG opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
14:07:00 DEBUG opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
14:07:00 DEBUG opendrift.models.oceandrift:582: 89 elements penetrated seafloor, lifting up
14:07:00 DEBUG opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
14:07:00 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
14:07:00 DEBUG opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
14:07:00 DEBUG opendrift.models.oceandrift:582: 100 elements penetrated seafloor, lifting up
14:07:00 DEBUG opendrift.models.oceandrift:600: 17 elements reached seafloor, set to bottom
14:07:00 DEBUG opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
14:07:00 DEBUG opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
14:07:00 DEBUG opendrift.models.oceandrift:582: 92 elements penetrated seafloor, lifting up
14:07:00 DEBUG opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:07:00 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:07:00 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:07:00 DEBUG opendrift.models.oceandrift:582: 89 elements penetrated seafloor, lifting up
14:07:00 DEBUG opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:07:00 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:07:00 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:07:00 DEBUG opendrift.models.oceandrift:582: 90 elements penetrated seafloor, lifting up
14:07:00 DEBUG opendrift.models.oceandrift:600: 11 elements reached seafloor, set to bottom
14:07:00 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
14:07:00 DEBUG opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
14:07:00 DEBUG opendrift.models.oceandrift:582: 93 elements penetrated seafloor, lifting up
14:07:00 DEBUG opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
14:07:00 DEBUG opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
14:07:00 DEBUG opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
14:07:00 DEBUG opendrift.models.oceandrift:582: 92 elements penetrated seafloor, lifting up
14:07:00 DEBUG opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
14:07:00 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
14:07:00 DEBUG opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
14:07:00 DEBUG opendrift.models.oceandrift:582: 84 elements penetrated seafloor, lifting up
14:07:00 DEBUG opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:07:00 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:00 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:07:00 DEBUG opendrift.models.oceandrift:582: 75 elements penetrated seafloor, lifting up
14:07:00 DEBUG opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
14:07:00 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
14:07:00 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
14:07:00 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:00 DEBUG opendrift.models.basemodel:2945: 1181 active elements (0 deactivated)
14:07:00 DEBUG opendrift.models.basemodel:1658: to be seeded: 8819, already seeded 1181
14:07:00 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:07:00 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:00 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:00 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:00 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:00 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:00 DEBUG opendrift.models.basemodel:1253: Data needed for 1216 elements
14:07:00 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:00 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 19:00:00 (before)
2023-09-01 20:00:00 (after)
14:07:00 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 19:00:00) in space (linearNDFast)
14:07:00 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:00 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:00 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:00 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:00 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:00 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:00 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.19302 (min) 13.5428 (max)
14:07:00 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:00 DEBUG opendrift.models.basemodel:1527: 1216 active elements
14:07:00 DEBUG opendrift.models.basemodel:1538: 59.12406186839765 <- latitude -> 59.17428177927694
14:07:00 DEBUG opendrift.models.basemodel:1543: 10.945837150485676 <- longitude -> 11.019212993315536
14:07:00 DEBUG opendrift.models.basemodel:1548: -12.945646286010742 <- z -> 0.0
14:07:00 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:00 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
14:07:00 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:00 INFO opendrift.models.basemodel:2882: 2023-09-01 19:46:21.121579 - step 35 of 216 - 1216 active elements (0 deactivated)
14:07:00 DEBUG opendrift.models.basemodel:2888: 8784 elements scheduled.
14:07:00 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:00 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:00 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:00 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:00 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:00 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:00 DEBUG opendrift.models.basemodel:1253: Data needed for 1216 elements
14:07:00 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:00 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:00 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:00 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:00 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:00 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:00 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:00 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:00 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:00 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:00 DEBUG opendrift.models.basemodel:1253: Data needed for 1216 elements
14:07:01 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:01 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 19:00:00 (before)
2023-09-01 20:00:00 (after)
14:07:01 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:01 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:01 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:01 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:01 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:01 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:01 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 20x20x5) for time after (2023-09-01 20:00:00)
14:07:01 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 19:00:00) in space (linearNDFast)
14:07:01 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:01 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 20:00:00) in space (linearNDFast)
14:07:01 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 257 elements, expanding data 1
14:07:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 257 elements, expanding data 1
14:07:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 285 elements, expanding data 1
14:07:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:07:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 285 elements, expanding data 1
14:07:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:07:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 285 elements, expanding data 1
14:07:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:07:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 285 elements, expanding data 1
14:07:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:07:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 285 elements, expanding data 1
14:07:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:07:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 663 elements, expanding data 1
14:07:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 2
14:07:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 663 elements, expanding data 1
14:07:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 2
14:07:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 663 elements, expanding data 1
14:07:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 2
14:07:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 663 elements, expanding data 1
14:07:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 2
14:07:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 663 elements, expanding data 1
14:07:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 2
14:07:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 257 elements, expanding data 1
14:07:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 257 elements, expanding data 1
14:07:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 257 elements, expanding data 1
14:07:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 257 elements, expanding data 1
14:07:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 257 elements, expanding data 1
14:07:01 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 19:00:00, weight 0.23) and
after (2023-09-01 20:00:00, weight 0.77) in time
14:07:01 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05417340960778 and -58.98079754366768 degrees.
14:07:01 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05417340960778 and -58.98079754366768 degrees.
14:07:01 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:01 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:01 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:01 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:01 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:01 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:01 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.745782 (min) 1.28601 (max)
14:07:01 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.933966 (min) 0.601932 (max)
14:07:01 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -4.27767e-05 (min) 0.000357876 (max)
14:07:01 DEBUG opendrift.models.basemodel:1524: x_wind: -1.91742 (min) 10.7375 (max)
14:07:01 DEBUG opendrift.models.basemodel:1524: y_wind: -7.56333 (min) 6.30804 (max)
14:07:01 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:01 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:01 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:01 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:01 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:01 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:01 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:01 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.19302 (min) 13.5428 (max)
14:07:01 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:01 DEBUG opendrift.models.basemodel:1527: 1216 active elements
14:07:01 DEBUG opendrift.models.basemodel:1538: 59.12406186839765 <- latitude -> 59.17428177927694
14:07:01 DEBUG opendrift.models.basemodel:1543: 10.945837150485676 <- longitude -> 11.019212993315536
14:07:01 DEBUG opendrift.models.basemodel:1548: -12.945646286010742 <- z -> 0.0
14:07:01 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:01 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:01 DEBUG opendrift.models.physics_methods:1050: min: 0.084333, mean: 3.465716, max: 9.460913
14:07:01 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.084333, mean: 3.465716, max: 9.460913
14:07:01 DEBUG opendrift.models.basemodel:813: 86 elements hit coastline, moving back to water
14:07:01 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:07:01 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:01 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:01 DEBUG opendrift.models.physics_methods:828: Advecting 35 of 1216 elements above 0.100m with wind-sheared ocean current (0.018658 m/s - 0.154538 m/s)
14:07:01 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:01 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:01 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.11076039911087035
14:07:01 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:01 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:01 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:01 DEBUG opendrift.models.oceandrift:582: 116 elements penetrated seafloor, lifting up
14:07:01 DEBUG opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
14:07:01 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
14:07:01 DEBUG opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
14:07:01 DEBUG opendrift.models.oceandrift:582: 104 elements penetrated seafloor, lifting up
14:07:01 DEBUG opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
14:07:01 DEBUG opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
14:07:01 DEBUG opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
14:07:01 DEBUG opendrift.models.oceandrift:582: 105 elements penetrated seafloor, lifting up
14:07:01 DEBUG opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
14:07:01 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
14:07:01 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
14:07:01 DEBUG opendrift.models.oceandrift:582: 110 elements penetrated seafloor, lifting up
14:07:01 DEBUG opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:07:01 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:01 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:07:01 DEBUG opendrift.models.oceandrift:582: 85 elements penetrated seafloor, lifting up
14:07:01 DEBUG opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:07:01 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:07:01 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:07:01 DEBUG opendrift.models.oceandrift:582: 95 elements penetrated seafloor, lifting up
14:07:01 DEBUG opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:07:01 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:07:01 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:07:01 DEBUG opendrift.models.oceandrift:582: 73 elements penetrated seafloor, lifting up
14:07:01 DEBUG opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:07:01 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:01 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:07:01 DEBUG opendrift.models.oceandrift:582: 84 elements penetrated seafloor, lifting up
14:07:01 DEBUG opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:07:01 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:01 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:07:01 DEBUG opendrift.models.oceandrift:582: 82 elements penetrated seafloor, lifting up
14:07:01 DEBUG opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:07:01 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:07:01 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:07:01 DEBUG opendrift.models.oceandrift:582: 78 elements penetrated seafloor, lifting up
14:07:01 DEBUG opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:07:01 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:07:01 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:07:01 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:01 DEBUG opendrift.models.basemodel:2945: 1216 active elements (0 deactivated)
14:07:01 DEBUG opendrift.models.basemodel:1658: to be seeded: 8784, already seeded 1216
14:07:01 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:07:01 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:01 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:01 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:01 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:01 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:01 DEBUG opendrift.models.basemodel:1253: Data needed for 1250 elements
14:07:01 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:01 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 19:00:00 (before)
2023-09-01 20:00:00 (after)
14:07:01 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 19:00:00) in space (linearNDFast)
14:07:01 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:01 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:01 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:01 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:01 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:01 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:01 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 13.8895 (max)
14:07:01 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:01 DEBUG opendrift.models.basemodel:1527: 1250 active elements
14:07:01 DEBUG opendrift.models.basemodel:1538: 59.12085386802185 <- latitude -> 59.17464837320313
14:07:01 DEBUG opendrift.models.basemodel:1543: 10.945169944144903 <- longitude -> 11.023419967554865
14:07:01 DEBUG opendrift.models.basemodel:1548: -12.945646286010742 <- z -> 0.0
14:07:01 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:01 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
14:07:01 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:01 INFO opendrift.models.basemodel:2882: 2023-09-01 19:56:21.121579 - step 36 of 216 - 1250 active elements (0 deactivated)
14:07:01 DEBUG opendrift.models.basemodel:2888: 8750 elements scheduled.
14:07:01 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:01 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:01 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:01 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:01 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:01 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:01 DEBUG opendrift.models.basemodel:1253: Data needed for 1250 elements
14:07:01 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:01 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:01 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:01 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:01 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:01 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:01 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:01 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:01 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:01 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:01 DEBUG opendrift.models.basemodel:1253: Data needed for 1250 elements
14:07:01 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:01 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 19:00:00 (before)
2023-09-01 20:00:00 (after)
14:07:02 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:02 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:02 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:02 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:02 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:02 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:02 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 21x21x5) for time after (2023-09-01 20:00:00)
14:07:02 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 19:00:00) in space (linearNDFast)
14:07:02 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:02 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 20:00:00) in space (linearNDFast)
14:07:02 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 282 elements, expanding data 1
14:07:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 282 elements, expanding data 1
14:07:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 316 elements, expanding data 1
14:07:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
14:07:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 316 elements, expanding data 1
14:07:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
14:07:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 316 elements, expanding data 1
14:07:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
14:07:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 316 elements, expanding data 1
14:07:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
14:07:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 316 elements, expanding data 1
14:07:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
14:07:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 705 elements, expanding data 1
14:07:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
14:07:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 705 elements, expanding data 1
14:07:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
14:07:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 705 elements, expanding data 1
14:07:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
14:07:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 705 elements, expanding data 1
14:07:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
14:07:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 705 elements, expanding data 1
14:07:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
14:07:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 282 elements, expanding data 1
14:07:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 282 elements, expanding data 1
14:07:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 282 elements, expanding data 1
14:07:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 282 elements, expanding data 1
14:07:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 282 elements, expanding data 1
14:07:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:02 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 19:00:00, weight 0.06) and
after (2023-09-01 20:00:00, weight 0.94) in time
14:07:02 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05484062728558 and -58.976590578560604 degrees.
14:07:02 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05484062728558 and -58.976590578560604 degrees.
14:07:02 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:02 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:02 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:02 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:02 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:02 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:02 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.641716 (min) 1.26636 (max)
14:07:02 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.04598 (min) 0.675088 (max)
14:07:02 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -4.63304e-05 (min) 0.000256315 (max)
14:07:02 DEBUG opendrift.models.basemodel:1524: x_wind: -2.39387 (min) 9.69024 (max)
14:07:02 DEBUG opendrift.models.basemodel:1524: y_wind: -6.67623 (min) 7.03985 (max)
14:07:02 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:02 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:02 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:02 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:02 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:02 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:02 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:02 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 13.8895 (max)
14:07:02 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:02 DEBUG opendrift.models.basemodel:1527: 1250 active elements
14:07:02 DEBUG opendrift.models.basemodel:1538: 59.12085386802185 <- latitude -> 59.17464837320313
14:07:02 DEBUG opendrift.models.basemodel:1543: 10.945169944144903 <- longitude -> 11.023419967554865
14:07:02 DEBUG opendrift.models.basemodel:1548: -12.945646286010742 <- z -> 0.0
14:07:02 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:02 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:02 DEBUG opendrift.models.physics_methods:1050: min: 0.029332, mean: 3.423457, max: 9.095803
14:07:02 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.029332, mean: 3.423457, max: 9.095803
14:07:02 DEBUG opendrift.models.basemodel:813: 87 elements hit coastline, moving back to water
14:07:02 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:07:02 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:02 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:02 DEBUG opendrift.models.physics_methods:828: Advecting 34 of 1250 elements above 0.100m with wind-sheared ocean current (0.009298 m/s - 0.134420 m/s)
14:07:02 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:02 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:02 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.1023768601823616
14:07:02 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:02 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:02 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:02 DEBUG opendrift.models.oceandrift:582: 120 elements penetrated seafloor, lifting up
14:07:02 DEBUG opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
14:07:02 DEBUG opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
14:07:02 DEBUG opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
14:07:02 DEBUG opendrift.models.oceandrift:582: 107 elements penetrated seafloor, lifting up
14:07:02 DEBUG opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
14:07:02 DEBUG opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
14:07:02 DEBUG opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
14:07:02 DEBUG opendrift.models.oceandrift:582: 117 elements penetrated seafloor, lifting up
14:07:02 DEBUG opendrift.models.oceandrift:600: 17 elements reached seafloor, set to bottom
14:07:02 DEBUG opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
14:07:02 DEBUG opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
14:07:02 DEBUG opendrift.models.oceandrift:582: 95 elements penetrated seafloor, lifting up
14:07:02 DEBUG opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:07:02 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:07:02 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:07:02 DEBUG opendrift.models.oceandrift:582: 98 elements penetrated seafloor, lifting up
14:07:02 DEBUG opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
14:07:02 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
14:07:02 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
14:07:02 DEBUG opendrift.models.oceandrift:582: 95 elements penetrated seafloor, lifting up
14:07:02 DEBUG opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:07:02 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:07:02 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:07:02 DEBUG opendrift.models.oceandrift:582: 83 elements penetrated seafloor, lifting up
14:07:02 DEBUG opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
14:07:02 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
14:07:02 DEBUG opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
14:07:02 DEBUG opendrift.models.oceandrift:582: 82 elements penetrated seafloor, lifting up
14:07:02 DEBUG opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:07:02 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:07:02 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:07:02 DEBUG opendrift.models.oceandrift:582: 83 elements penetrated seafloor, lifting up
14:07:02 DEBUG opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:07:02 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:07:02 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:07:02 DEBUG opendrift.models.oceandrift:582: 62 elements penetrated seafloor, lifting up
14:07:02 DEBUG opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:07:02 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:07:02 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:07:02 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:02 DEBUG opendrift.models.basemodel:2945: 1250 active elements (0 deactivated)
14:07:02 DEBUG opendrift.models.basemodel:1658: to be seeded: 8750, already seeded 1250
14:07:02 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:07:02 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:02 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:02 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:02 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:02 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:02 DEBUG opendrift.models.basemodel:1253: Data needed for 1285 elements
14:07:02 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:02 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 20:00:00 (before)
2023-09-01 21:00:00 (after)
14:07:02 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 20:00:00) in space (linearNDFast)
14:07:02 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:02 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:02 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:02 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:02 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:02 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:02 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.28706 (min) 13.6057 (max)
14:07:02 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:02 DEBUG opendrift.models.basemodel:1527: 1285 active elements
14:07:02 DEBUG opendrift.models.basemodel:1538: 59.12360167915017 <- latitude -> 59.174641635911726
14:07:02 DEBUG opendrift.models.basemodel:1543: 10.944844698868723 <- longitude -> 11.021924999615177
14:07:02 DEBUG opendrift.models.basemodel:1548: -12.935646286010742 <- z -> 0.0
14:07:02 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:02 DEBUG opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
14:07:02 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:02 INFO opendrift.models.basemodel:2882: 2023-09-01 20:06:21.121579 - step 37 of 216 - 1285 active elements (0 deactivated)
14:07:02 DEBUG opendrift.models.basemodel:2888: 8715 elements scheduled.
14:07:02 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:02 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:02 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:02 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:02 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:02 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:02 DEBUG opendrift.models.basemodel:1253: Data needed for 1285 elements
14:07:02 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:02 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:02 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:02 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:02 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:02 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:02 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:02 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:02 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:02 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:02 DEBUG opendrift.models.basemodel:1253: Data needed for 1285 elements
14:07:02 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:02 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 20:00:00 (before)
2023-09-01 21:00:00 (after)
14:07:03 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:03 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:03 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:03 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:03 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:03 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:03 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 20x20x5) for time after (2023-09-01 21:00:00)
14:07:03 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 20:00:00) in space (linearNDFast)
14:07:03 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:03 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 21:00:00) in space (linearNDFast)
14:07:03 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 309 elements, expanding data 1
14:07:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 309 elements, expanding data 1
14:07:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 341 elements, expanding data 1
14:07:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:07:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 341 elements, expanding data 1
14:07:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:07:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 341 elements, expanding data 1
14:07:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:07:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 341 elements, expanding data 1
14:07:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:07:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 341 elements, expanding data 1
14:07:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:07:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 748 elements, expanding data 1
14:07:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 92 elements, expanding data 2
14:07:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 748 elements, expanding data 1
14:07:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 92 elements, expanding data 2
14:07:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 748 elements, expanding data 1
14:07:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 92 elements, expanding data 2
14:07:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 748 elements, expanding data 1
14:07:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 92 elements, expanding data 2
14:07:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 748 elements, expanding data 1
14:07:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 92 elements, expanding data 2
14:07:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 309 elements, expanding data 1
14:07:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 309 elements, expanding data 1
14:07:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 309 elements, expanding data 1
14:07:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 309 elements, expanding data 1
14:07:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 309 elements, expanding data 1
14:07:03 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 20:00:00, weight 0.89) and
after (2023-09-01 21:00:00, weight 0.11) in time
14:07:03 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05516585940044 and -58.97808553933598 degrees.
14:07:03 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05516585940044 and -58.97808553933598 degrees.
14:07:03 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:03 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:03 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:03 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:03 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:03 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:03 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.68422 (min) 1.16492 (max)
14:07:03 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.01894 (min) 0.762873 (max)
14:07:03 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -6.3799e-05 (min) 0.00028986 (max)
14:07:03 DEBUG opendrift.models.basemodel:1524: x_wind: -4.22478 (min) 9.60937 (max)
14:07:03 DEBUG opendrift.models.basemodel:1524: y_wind: -6.35594 (min) 7.13902 (max)
14:07:03 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:03 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:03 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:03 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:03 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:03 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:03 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:03 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.28706 (min) 13.6057 (max)
14:07:03 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:03 DEBUG opendrift.models.basemodel:1527: 1285 active elements
14:07:03 DEBUG opendrift.models.basemodel:1538: 59.12360167915017 <- latitude -> 59.174641635911726
14:07:03 DEBUG opendrift.models.basemodel:1543: 10.944844698868723 <- longitude -> 11.021924999615177
14:07:03 DEBUG opendrift.models.basemodel:1548: -12.935646286010742 <- z -> 0.0
14:07:03 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:03 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:03 DEBUG opendrift.models.physics_methods:1050: min: 0.149200, mean: 3.342694, max: 8.338646
14:07:03 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.149200, mean: 3.342694, max: 8.338646
14:07:03 DEBUG opendrift.models.basemodel:813: 89 elements hit coastline, moving back to water
14:07:03 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:07:03 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:03 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:03 DEBUG opendrift.models.physics_methods:828: Advecting 35 of 1285 elements above 0.100m with wind-sheared ocean current (0.019312 m/s - 0.158415 m/s)
14:07:03 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:03 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:03 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08604270088966369
14:07:03 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:03 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:03 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:03 DEBUG opendrift.models.oceandrift:582: 115 elements penetrated seafloor, lifting up
14:07:03 DEBUG opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
14:07:03 DEBUG opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
14:07:03 DEBUG opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
14:07:03 DEBUG opendrift.models.oceandrift:582: 109 elements penetrated seafloor, lifting up
14:07:03 DEBUG opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:07:03 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:03 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:07:03 DEBUG opendrift.models.oceandrift:582: 82 elements penetrated seafloor, lifting up
14:07:03 DEBUG opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:07:03 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:03 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:07:03 DEBUG opendrift.models.oceandrift:582: 97 elements penetrated seafloor, lifting up
14:07:03 DEBUG opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
14:07:03 DEBUG opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
14:07:03 DEBUG opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
14:07:03 DEBUG opendrift.models.oceandrift:582: 73 elements penetrated seafloor, lifting up
14:07:03 DEBUG opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
14:07:03 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
14:07:03 DEBUG opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
14:07:03 DEBUG opendrift.models.oceandrift:582: 89 elements penetrated seafloor, lifting up
14:07:03 DEBUG opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
14:07:03 DEBUG opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
14:07:03 DEBUG opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
14:07:03 DEBUG opendrift.models.oceandrift:582: 93 elements penetrated seafloor, lifting up
14:07:03 DEBUG opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:07:03 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:03 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:07:03 DEBUG opendrift.models.oceandrift:582: 69 elements penetrated seafloor, lifting up
14:07:03 DEBUG opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:07:03 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:07:03 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:07:03 DEBUG opendrift.models.oceandrift:582: 80 elements penetrated seafloor, lifting up
14:07:03 DEBUG opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:07:03 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:03 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:07:03 DEBUG opendrift.models.oceandrift:582: 65 elements penetrated seafloor, lifting up
14:07:03 DEBUG opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:07:03 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:07:03 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:07:03 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:03 DEBUG opendrift.models.basemodel:2945: 1285 active elements (0 deactivated)
14:07:03 DEBUG opendrift.models.basemodel:1658: to be seeded: 8715, already seeded 1285
14:07:03 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:07:03 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:03 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:03 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:03 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:03 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:03 DEBUG opendrift.models.basemodel:1253: Data needed for 1320 elements
14:07:03 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:03 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 20:00:00 (before)
2023-09-01 21:00:00 (after)
14:07:03 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 20:00:00) in space (linearNDFast)
14:07:03 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:03 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:03 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:03 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:03 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:03 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:03 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.33121 (min) 13.5381 (max)
14:07:03 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:03 DEBUG opendrift.models.basemodel:1527: 1320 active elements
14:07:03 DEBUG opendrift.models.basemodel:1538: 59.123682109856155 <- latitude -> 59.17440385178371
14:07:03 DEBUG opendrift.models.basemodel:1543: 10.944566582451257 <- longitude -> 11.019765926753566
14:07:03 DEBUG opendrift.models.basemodel:1548: -13.259896507263184 <- z -> 0.0
14:07:03 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:03 DEBUG opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
14:07:03 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:03 INFO opendrift.models.basemodel:2882: 2023-09-01 20:16:21.121579 - step 38 of 216 - 1320 active elements (0 deactivated)
14:07:03 DEBUG opendrift.models.basemodel:2888: 8680 elements scheduled.
14:07:03 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:03 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:03 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:03 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:03 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:03 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:03 DEBUG opendrift.models.basemodel:1253: Data needed for 1320 elements
14:07:03 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:03 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:03 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:03 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:03 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:03 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:03 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:03 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:03 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:03 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:03 DEBUG opendrift.models.basemodel:1253: Data needed for 1320 elements
14:07:03 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:03 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 20:00:00 (before)
2023-09-01 21:00:00 (after)
14:07:04 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:04 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:04 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:04 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:04 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:04 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:04 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 20x21x5) for time after (2023-09-01 21:00:00)
14:07:04 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 20:00:00) in space (linearNDFast)
14:07:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:04 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 21:00:00) in space (linearNDFast)
14:07:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 1
14:07:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 1
14:07:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 360 elements, expanding data 1
14:07:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 360 elements, expanding data 1
14:07:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 360 elements, expanding data 1
14:07:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 360 elements, expanding data 1
14:07:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 360 elements, expanding data 1
14:07:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 772 elements, expanding data 1
14:07:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 2
14:07:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 772 elements, expanding data 1
14:07:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 2
14:07:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 772 elements, expanding data 1
14:07:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 2
14:07:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 772 elements, expanding data 1
14:07:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 2
14:07:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 772 elements, expanding data 1
14:07:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 2
14:07:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 1
14:07:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 1
14:07:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 1
14:07:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 1
14:07:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 1
14:07:04 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 20:00:00, weight 0.73) and
after (2023-09-01 21:00:00, weight 0.27) in time
14:07:04 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05544398180489 and -58.980244638059084 degrees.
14:07:04 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05544398180489 and -58.980244638059084 degrees.
14:07:04 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:04 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:04 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:04 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:04 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:04 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:04 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.628612 (min) 1.08563 (max)
14:07:04 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.99491 (min) 0.700798 (max)
14:07:04 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -4.90095e-05 (min) 0.000296316 (max)
14:07:04 DEBUG opendrift.models.basemodel:1524: x_wind: -2.67109 (min) 9.45763 (max)
14:07:04 DEBUG opendrift.models.basemodel:1524: y_wind: -6.65046 (min) 5.71845 (max)
14:07:04 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:04 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:04 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:04 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:04 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:04 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:04 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:04 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.33121 (min) 13.5381 (max)
14:07:04 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:04 DEBUG opendrift.models.basemodel:1527: 1320 active elements
14:07:04 DEBUG opendrift.models.basemodel:1538: 59.123682109856155 <- latitude -> 59.17440385178371
14:07:04 DEBUG opendrift.models.basemodel:1543: 10.944566582451257 <- longitude -> 11.019765926753566
14:07:04 DEBUG opendrift.models.basemodel:1548: -13.224869728088379 <- z -> 0.0
14:07:04 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:04 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:04 DEBUG opendrift.models.physics_methods:1050: min: 0.064448, mean: 3.082704, max: 8.157651
14:07:04 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.064448, mean: 3.082704, max: 8.157651
14:07:04 DEBUG opendrift.models.basemodel:813: 84 elements hit coastline, moving back to water
14:07:04 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:07:04 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:04 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:04 DEBUG opendrift.models.physics_methods:828: Advecting 36 of 1320 elements above 0.100m with wind-sheared ocean current (0.010503 m/s - 0.136131 m/s)
14:07:04 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:04 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:04 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08234820823677062
14:07:04 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:04 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:04 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:04 DEBUG opendrift.models.oceandrift:582: 121 elements penetrated seafloor, lifting up
14:07:04 DEBUG opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:07:04 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:04 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:07:04 DEBUG opendrift.models.oceandrift:582: 115 elements penetrated seafloor, lifting up
14:07:04 DEBUG opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:07:04 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:04 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:07:04 DEBUG opendrift.models.oceandrift:582: 99 elements penetrated seafloor, lifting up
14:07:04 DEBUG opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:07:04 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:04 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:07:04 DEBUG opendrift.models.oceandrift:582: 81 elements penetrated seafloor, lifting up
14:07:04 DEBUG opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:07:04 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:04 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:07:04 DEBUG opendrift.models.oceandrift:582: 102 elements penetrated seafloor, lifting up
14:07:04 DEBUG opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
14:07:04 DEBUG opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
14:07:04 DEBUG opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
14:07:04 DEBUG opendrift.models.oceandrift:582: 76 elements penetrated seafloor, lifting up
14:07:04 DEBUG opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
14:07:04 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
14:07:04 DEBUG opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
14:07:04 DEBUG opendrift.models.oceandrift:582: 98 elements penetrated seafloor, lifting up
14:07:04 DEBUG opendrift.models.oceandrift:600: 11 elements reached seafloor, set to bottom
14:07:04 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
14:07:04 DEBUG opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
14:07:04 DEBUG opendrift.models.oceandrift:582: 94 elements penetrated seafloor, lifting up
14:07:04 DEBUG opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:07:04 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:07:04 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:07:04 DEBUG opendrift.models.oceandrift:582: 83 elements penetrated seafloor, lifting up
14:07:04 DEBUG opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:07:04 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:07:04 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:07:04 DEBUG opendrift.models.oceandrift:582: 68 elements penetrated seafloor, lifting up
14:07:04 DEBUG opendrift.models.oceandrift:600: 11 elements reached seafloor, set to bottom
14:07:04 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
14:07:04 DEBUG opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
14:07:04 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:04 DEBUG opendrift.models.basemodel:2945: 1320 active elements (0 deactivated)
14:07:04 DEBUG opendrift.models.basemodel:1658: to be seeded: 8680, already seeded 1320
14:07:04 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:07:04 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:04 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:04 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:04 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:04 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:04 DEBUG opendrift.models.basemodel:1253: Data needed for 1355 elements
14:07:04 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:04 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 20:00:00 (before)
2023-09-01 21:00:00 (after)
14:07:04 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 20:00:00) in space (linearNDFast)
14:07:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:04 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:04 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:04 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:04 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:04 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:04 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.43652 (min) 13.5234 (max)
14:07:04 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:04 DEBUG opendrift.models.basemodel:1527: 1355 active elements
14:07:04 DEBUG opendrift.models.basemodel:1538: 59.12401858772739 <- latitude -> 59.17433728048154
14:07:04 DEBUG opendrift.models.basemodel:1543: 10.944704346566336 <- longitude -> 11.02118366618642
14:07:04 DEBUG opendrift.models.basemodel:1548: -13.53807544708252 <- z -> 0.0
14:07:04 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:04 DEBUG opendrift.models.basemodel:836: Lifting 63 elements to seafloor.
14:07:04 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:04 INFO opendrift.models.basemodel:2882: 2023-09-01 20:26:21.121579 - step 39 of 216 - 1355 active elements (0 deactivated)
14:07:04 DEBUG opendrift.models.basemodel:2888: 8645 elements scheduled.
14:07:04 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:04 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:04 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:04 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:04 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:04 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:04 DEBUG opendrift.models.basemodel:1253: Data needed for 1355 elements
14:07:04 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:04 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:04 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:04 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:04 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:04 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:04 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:04 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:04 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:04 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:04 DEBUG opendrift.models.basemodel:1253: Data needed for 1355 elements
14:07:04 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:04 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 20:00:00 (before)
2023-09-01 21:00:00 (after)
14:07:05 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:05 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:05 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:05 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:05 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:05 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:05 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 20x21x5) for time after (2023-09-01 21:00:00)
14:07:05 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 20:00:00) in space (linearNDFast)
14:07:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:05 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 21:00:00) in space (linearNDFast)
14:07:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 351 elements, expanding data 1
14:07:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 351 elements, expanding data 1
14:07:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 389 elements, expanding data 1
14:07:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:07:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 389 elements, expanding data 1
14:07:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:07:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 389 elements, expanding data 1
14:07:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:07:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 389 elements, expanding data 1
14:07:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:07:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 389 elements, expanding data 1
14:07:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:07:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 820 elements, expanding data 1
14:07:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 99 elements, expanding data 2
14:07:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 820 elements, expanding data 1
14:07:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 99 elements, expanding data 2
14:07:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 820 elements, expanding data 1
14:07:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 99 elements, expanding data 2
14:07:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 820 elements, expanding data 1
14:07:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 99 elements, expanding data 2
14:07:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 820 elements, expanding data 1
14:07:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 99 elements, expanding data 2
14:07:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 351 elements, expanding data 1
14:07:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 351 elements, expanding data 1
14:07:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 351 elements, expanding data 1
14:07:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 351 elements, expanding data 1
14:07:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 351 elements, expanding data 1
14:07:05 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 20:00:00, weight 0.56) and
after (2023-09-01 21:00:00, weight 0.44) in time
14:07:05 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.055306209478054 and -58.978826880448665 degrees.
14:07:05 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.055306209478054 and -58.978826880448665 degrees.
14:07:05 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:05 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:05 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:05 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:05 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:05 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:05 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.699418 (min) 1.20592 (max)
14:07:05 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.01527 (min) 0.758294 (max)
14:07:05 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -4.83132e-05 (min) 0.000356635 (max)
14:07:05 DEBUG opendrift.models.basemodel:1524: x_wind: -4.83325 (min) 8.5464 (max)
14:07:05 DEBUG opendrift.models.basemodel:1524: y_wind: -5.82965 (min) 6.11938 (max)
14:07:05 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:05 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:05 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:05 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:05 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:05 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:05 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:05 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.43652 (min) 13.5234 (max)
14:07:05 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:05 DEBUG opendrift.models.basemodel:1527: 1355 active elements
14:07:05 DEBUG opendrift.models.basemodel:1538: 59.12401858772739 <- latitude -> 59.17433728048154
14:07:05 DEBUG opendrift.models.basemodel:1543: 10.944704346566336 <- longitude -> 11.02118366618642
14:07:05 DEBUG opendrift.models.basemodel:1548: -13.454569816589355 <- z -> 0.0
14:07:05 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:05 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:05 DEBUG opendrift.models.physics_methods:1050: min: 0.113175, mean: 2.951375, max: 7.813320
14:07:05 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.113175, mean: 2.951375, max: 7.813320
14:07:05 DEBUG opendrift.models.basemodel:813: 94 elements hit coastline, moving back to water
14:07:05 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
14:07:05 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:05 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:05 DEBUG opendrift.models.physics_methods:828: Advecting 36 of 1355 elements above 0.100m with wind-sheared ocean current (0.009422 m/s - 0.128370 m/s)
14:07:05 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:05 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:05 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07554349217708588
14:07:05 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:05 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:05 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:05 DEBUG opendrift.models.oceandrift:582: 129 elements penetrated seafloor, lifting up
14:07:05 DEBUG opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:07:05 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:05 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:07:05 DEBUG opendrift.models.oceandrift:582: 93 elements penetrated seafloor, lifting up
14:07:05 DEBUG opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
14:07:05 DEBUG opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
14:07:05 DEBUG opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
14:07:05 DEBUG opendrift.models.oceandrift:582: 92 elements penetrated seafloor, lifting up
14:07:05 DEBUG opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
14:07:05 DEBUG opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
14:07:05 DEBUG opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
14:07:05 DEBUG opendrift.models.oceandrift:582: 79 elements penetrated seafloor, lifting up
14:07:05 DEBUG opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
14:07:05 DEBUG opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
14:07:05 DEBUG opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
14:07:05 DEBUG opendrift.models.oceandrift:582: 90 elements penetrated seafloor, lifting up
14:07:05 DEBUG opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
14:07:05 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
14:07:05 DEBUG opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
14:07:05 DEBUG opendrift.models.oceandrift:582: 89 elements penetrated seafloor, lifting up
14:07:05 DEBUG opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
14:07:05 DEBUG opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
14:07:05 DEBUG opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
14:07:05 DEBUG opendrift.models.oceandrift:582: 63 elements penetrated seafloor, lifting up
14:07:05 DEBUG opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:07:05 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:05 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:07:05 DEBUG opendrift.models.oceandrift:582: 76 elements penetrated seafloor, lifting up
14:07:05 DEBUG opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:07:05 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:05 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:07:05 DEBUG opendrift.models.oceandrift:582: 70 elements penetrated seafloor, lifting up
14:07:05 DEBUG opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
14:07:05 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
14:07:05 DEBUG opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
14:07:05 DEBUG opendrift.models.oceandrift:582: 80 elements penetrated seafloor, lifting up
14:07:05 DEBUG opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
14:07:05 DEBUG opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
14:07:05 DEBUG opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
14:07:05 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:05 DEBUG opendrift.models.basemodel:2945: 1355 active elements (0 deactivated)
14:07:05 DEBUG opendrift.models.basemodel:1658: to be seeded: 8645, already seeded 1355
14:07:05 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:07:05 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:05 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:05 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:05 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:05 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:05 DEBUG opendrift.models.basemodel:1253: Data needed for 1389 elements
14:07:05 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:05 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 20:00:00 (before)
2023-09-01 21:00:00 (after)
14:07:05 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 20:00:00) in space (linearNDFast)
14:07:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:05 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:05 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:05 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:05 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:05 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:05 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.06098 (min) 13.8388 (max)
14:07:05 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:05 DEBUG opendrift.models.basemodel:1527: 1389 active elements
14:07:05 DEBUG opendrift.models.basemodel:1538: 59.12401858772739 <- latitude -> 59.17424841916291
14:07:05 DEBUG opendrift.models.basemodel:1543: 10.942939945850032 <- longitude -> 11.024541715761972
14:07:05 DEBUG opendrift.models.basemodel:1548: -13.44456886291504 <- z -> 0.0
14:07:05 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:05 DEBUG opendrift.models.basemodel:836: Lifting 68 elements to seafloor.
14:07:05 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:05 INFO opendrift.models.basemodel:2882: 2023-09-01 20:36:21.121579 - step 40 of 216 - 1389 active elements (0 deactivated)
14:07:05 DEBUG opendrift.models.basemodel:2888: 8611 elements scheduled.
14:07:05 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:05 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:05 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:05 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:05 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:05 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:05 DEBUG opendrift.models.basemodel:1253: Data needed for 1389 elements
14:07:05 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:05 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:05 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:05 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:05 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:05 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:05 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:05 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:05 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:05 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:05 DEBUG opendrift.models.basemodel:1253: Data needed for 1389 elements
14:07:05 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:05 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 20:00:00 (before)
2023-09-01 21:00:00 (after)
14:07:06 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:06 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:06 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:06 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:06 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:06 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:06 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 21x21x5) for time after (2023-09-01 21:00:00)
14:07:06 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 20:00:00) in space (linearNDFast)
14:07:06 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:06 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 21:00:00) in space (linearNDFast)
14:07:06 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 372 elements, expanding data 1
14:07:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 372 elements, expanding data 1
14:07:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 409 elements, expanding data 1
14:07:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
14:07:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 409 elements, expanding data 1
14:07:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
14:07:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 409 elements, expanding data 1
14:07:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
14:07:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 409 elements, expanding data 1
14:07:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
14:07:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 409 elements, expanding data 1
14:07:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
14:07:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 830 elements, expanding data 1
14:07:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 107 elements, expanding data 2
14:07:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 830 elements, expanding data 1
14:07:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 107 elements, expanding data 2
14:07:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 830 elements, expanding data 1
14:07:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 107 elements, expanding data 2
14:07:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 830 elements, expanding data 1
14:07:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 107 elements, expanding data 2
14:07:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 830 elements, expanding data 1
14:07:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 107 elements, expanding data 2
14:07:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 372 elements, expanding data 1
14:07:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 372 elements, expanding data 1
14:07:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 372 elements, expanding data 1
14:07:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 372 elements, expanding data 1
14:07:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 372 elements, expanding data 1
14:07:06 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 20:00:00, weight 0.39) and
after (2023-09-01 21:00:00, weight 0.61) in time
14:07:06 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05707062229729 and -58.975468825606505 degrees.
14:07:06 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05707062229729 and -58.975468825606505 degrees.
14:07:06 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:06 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:06 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:06 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:06 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:06 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:06 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.595131 (min) 1.11024 (max)
14:07:06 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.23417 (min) 0.672866 (max)
14:07:06 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -4.58469e-05 (min) 0.000350633 (max)
14:07:06 DEBUG opendrift.models.basemodel:1524: x_wind: -4.73327 (min) 10.3396 (max)
14:07:06 DEBUG opendrift.models.basemodel:1524: y_wind: -6.96899 (min) 6.19698 (max)
14:07:06 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:06 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:06 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:06 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:06 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:06 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:06 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:06 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.06098 (min) 13.8388 (max)
14:07:06 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:06 DEBUG opendrift.models.basemodel:1527: 1389 active elements
14:07:06 DEBUG opendrift.models.basemodel:1538: 59.12401858772739 <- latitude -> 59.17424841916291
14:07:06 DEBUG opendrift.models.basemodel:1543: 10.942939945850032 <- longitude -> 11.024541715761972
14:07:06 DEBUG opendrift.models.basemodel:1548: -13.44456886291504 <- z -> 0.0
14:07:06 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:06 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:06 DEBUG opendrift.models.physics_methods:1050: min: 0.097147, mean: 2.864712, max: 8.879381
14:07:06 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.097147, mean: 2.864712, max: 8.879381
14:07:06 DEBUG opendrift.models.basemodel:813: 95 elements hit coastline, moving back to water
14:07:06 DEBUG opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
14:07:06 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:06 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:06 DEBUG opendrift.models.physics_methods:828: Advecting 35 of 1389 elements above 0.100m with wind-sheared ocean current (0.009249 m/s - 0.132462 m/s)
14:07:06 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:06 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:06 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09756316697605133
14:07:06 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:06 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:06 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:06 DEBUG opendrift.models.oceandrift:582: 124 elements penetrated seafloor, lifting up
14:07:06 DEBUG opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
14:07:06 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
14:07:06 DEBUG opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
14:07:06 DEBUG opendrift.models.oceandrift:582: 111 elements penetrated seafloor, lifting up
14:07:06 DEBUG opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
14:07:06 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
14:07:06 DEBUG opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
14:07:06 DEBUG opendrift.models.oceandrift:582: 91 elements penetrated seafloor, lifting up
14:07:06 DEBUG opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:07:06 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:07:06 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:07:06 DEBUG opendrift.models.oceandrift:582: 106 elements penetrated seafloor, lifting up
14:07:06 DEBUG opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
14:07:06 DEBUG opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
14:07:06 DEBUG opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
14:07:06 DEBUG opendrift.models.oceandrift:582: 82 elements penetrated seafloor, lifting up
14:07:06 DEBUG opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
14:07:06 DEBUG opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
14:07:06 DEBUG opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
14:07:06 DEBUG opendrift.models.oceandrift:582: 85 elements penetrated seafloor, lifting up
14:07:06 DEBUG opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
14:07:06 DEBUG opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
14:07:06 DEBUG opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
14:07:06 DEBUG opendrift.models.oceandrift:582: 97 elements penetrated seafloor, lifting up
14:07:06 DEBUG opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
14:07:06 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
14:07:06 DEBUG opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
14:07:06 DEBUG opendrift.models.oceandrift:582: 85 elements penetrated seafloor, lifting up
14:07:06 DEBUG opendrift.models.oceandrift:600: 11 elements reached seafloor, set to bottom
14:07:06 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
14:07:06 DEBUG opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
14:07:06 DEBUG opendrift.models.oceandrift:582: 84 elements penetrated seafloor, lifting up
14:07:06 DEBUG opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:07:06 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:06 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:07:06 DEBUG opendrift.models.oceandrift:582: 75 elements penetrated seafloor, lifting up
14:07:06 DEBUG opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:07:06 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:06 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:07:06 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:06 DEBUG opendrift.models.basemodel:2945: 1389 active elements (0 deactivated)
14:07:06 DEBUG opendrift.models.basemodel:1658: to be seeded: 8611, already seeded 1389
14:07:06 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:07:06 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:06 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:06 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:06 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:06 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:06 DEBUG opendrift.models.basemodel:1253: Data needed for 1424 elements
14:07:06 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:06 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 20:00:00 (before)
2023-09-01 21:00:00 (after)
14:07:06 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 20:00:00) in space (linearNDFast)
14:07:06 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:06 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:06 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:06 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:06 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:06 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:06 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.16487 (min) 13.999 (max)
14:07:06 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:06 DEBUG opendrift.models.basemodel:1527: 1424 active elements
14:07:06 DEBUG opendrift.models.basemodel:1538: 59.1235447807611 <- latitude -> 59.17321756760377
14:07:06 DEBUG opendrift.models.basemodel:1543: 10.944633399127166 <- longitude -> 11.024086691833576
14:07:06 DEBUG opendrift.models.basemodel:1548: -12.529073715209961 <- z -> 0.0
14:07:06 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:06 DEBUG opendrift.models.basemodel:836: Lifting 66 elements to seafloor.
14:07:06 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:06 INFO opendrift.models.basemodel:2882: 2023-09-01 20:46:21.121579 - step 41 of 216 - 1424 active elements (0 deactivated)
14:07:06 DEBUG opendrift.models.basemodel:2888: 8576 elements scheduled.
14:07:06 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:06 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:06 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:06 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:06 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:06 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:06 DEBUG opendrift.models.basemodel:1253: Data needed for 1424 elements
14:07:06 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:06 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:06 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:06 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:06 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:06 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:06 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:06 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:06 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:06 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:06 DEBUG opendrift.models.basemodel:1253: Data needed for 1424 elements
14:07:06 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:06 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 20:00:00 (before)
2023-09-01 21:00:00 (after)
14:07:07 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:07 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:07 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:07 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:07 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:07 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:07 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 21x21x5) for time after (2023-09-01 21:00:00)
14:07:07 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 20:00:00) in space (linearNDFast)
14:07:07 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:07 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 21:00:00) in space (linearNDFast)
14:07:07 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 388 elements, expanding data 1
14:07:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 388 elements, expanding data 1
14:07:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 431 elements, expanding data 1
14:07:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 431 elements, expanding data 1
14:07:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 431 elements, expanding data 1
14:07:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 431 elements, expanding data 1
14:07:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 431 elements, expanding data 1
14:07:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 861 elements, expanding data 1
14:07:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 123 elements, expanding data 2
14:07:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 861 elements, expanding data 1
14:07:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 123 elements, expanding data 2
14:07:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 861 elements, expanding data 1
14:07:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 123 elements, expanding data 2
14:07:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 861 elements, expanding data 1
14:07:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 123 elements, expanding data 2
14:07:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 861 elements, expanding data 1
14:07:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 123 elements, expanding data 2
14:07:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 388 elements, expanding data 1
14:07:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 388 elements, expanding data 1
14:07:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 388 elements, expanding data 1
14:07:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 388 elements, expanding data 1
14:07:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 388 elements, expanding data 1
14:07:07 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 20:00:00, weight 0.23) and
after (2023-09-01 21:00:00, weight 0.77) in time
14:07:07 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.055377151267926 and -58.97592386811005 degrees.
14:07:07 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.055377151267926 and -58.97592386811005 degrees.
14:07:07 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:07 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:07 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:07 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:07 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:07 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:07 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.961248 (min) 1.30903 (max)
14:07:07 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.945053 (min) 0.74427 (max)
14:07:07 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -5.87194e-05 (min) 0.00035481 (max)
14:07:07 DEBUG opendrift.models.basemodel:1524: x_wind: -5.80462 (min) 10.7488 (max)
14:07:07 DEBUG opendrift.models.basemodel:1524: y_wind: -6.98205 (min) 5.49131 (max)
14:07:07 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:07 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:07 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:07 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:07 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:07 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:07 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:07 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.16487 (min) 13.999 (max)
14:07:07 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:07 DEBUG opendrift.models.basemodel:1527: 1424 active elements
14:07:07 DEBUG opendrift.models.basemodel:1538: 59.1235447807611 <- latitude -> 59.17321756760377
14:07:07 DEBUG opendrift.models.basemodel:1543: 10.944633399127166 <- longitude -> 11.024086691833576
14:07:07 DEBUG opendrift.models.basemodel:1548: -12.529073715209961 <- z -> 0.0
14:07:07 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:07 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:07 DEBUG opendrift.models.physics_methods:1050: min: 0.105478, mean: 2.621294, max: 9.196570
14:07:07 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.105478, mean: 2.621294, max: 9.196570
14:07:07 DEBUG opendrift.models.basemodel:813: 92 elements hit coastline, moving back to water
14:07:07 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:07:07 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:07 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:07 DEBUG opendrift.models.physics_methods:828: Advecting 35 of 1424 elements above 0.100m with wind-sheared ocean current (0.002706 m/s - 0.126014 m/s)
14:07:07 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:07 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:07 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10465766066654204
14:07:07 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:07 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:07 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:07 DEBUG opendrift.models.oceandrift:582: 121 elements penetrated seafloor, lifting up
14:07:07 DEBUG opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
14:07:07 DEBUG opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
14:07:07 DEBUG opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
14:07:07 DEBUG opendrift.models.oceandrift:582: 85 elements penetrated seafloor, lifting up
14:07:07 DEBUG opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
14:07:07 DEBUG opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
14:07:07 DEBUG opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
14:07:07 DEBUG opendrift.models.oceandrift:582: 74 elements penetrated seafloor, lifting up
14:07:07 DEBUG opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
14:07:07 DEBUG opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
14:07:07 DEBUG opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
14:07:07 DEBUG opendrift.models.oceandrift:582: 81 elements penetrated seafloor, lifting up
14:07:07 DEBUG opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
14:07:07 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
14:07:07 DEBUG opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
14:07:07 DEBUG opendrift.models.oceandrift:582: 76 elements penetrated seafloor, lifting up
14:07:07 DEBUG opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
14:07:07 DEBUG opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
14:07:07 DEBUG opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
14:07:07 DEBUG opendrift.models.oceandrift:582: 62 elements penetrated seafloor, lifting up
14:07:07 DEBUG opendrift.models.oceandrift:600: 11 elements reached seafloor, set to bottom
14:07:07 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
14:07:07 DEBUG opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
14:07:07 DEBUG opendrift.models.oceandrift:582: 75 elements penetrated seafloor, lifting up
14:07:07 DEBUG opendrift.models.oceandrift:600: 17 elements reached seafloor, set to bottom
14:07:07 DEBUG opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
14:07:07 DEBUG opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
14:07:07 DEBUG opendrift.models.oceandrift:582: 66 elements penetrated seafloor, lifting up
14:07:07 DEBUG opendrift.models.oceandrift:600: 11 elements reached seafloor, set to bottom
14:07:07 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
14:07:07 DEBUG opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
14:07:07 DEBUG opendrift.models.oceandrift:582: 62 elements penetrated seafloor, lifting up
14:07:07 DEBUG opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
14:07:07 DEBUG opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
14:07:07 DEBUG opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
14:07:07 DEBUG opendrift.models.oceandrift:582: 64 elements penetrated seafloor, lifting up
14:07:07 DEBUG opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
14:07:07 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
14:07:07 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
14:07:07 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:07 DEBUG opendrift.models.basemodel:2945: 1424 active elements (0 deactivated)
14:07:07 DEBUG opendrift.models.basemodel:1658: to be seeded: 8576, already seeded 1424
14:07:07 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:07:07 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:07 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:07 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:07 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:07 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:07 DEBUG opendrift.models.basemodel:1253: Data needed for 1459 elements
14:07:07 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:07 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 20:00:00 (before)
2023-09-01 21:00:00 (after)
14:07:07 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 20:00:00) in space (linearNDFast)
14:07:07 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:07 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:07 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:07 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:07 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:07 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:07 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.136 (max)
14:07:07 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:07 DEBUG opendrift.models.basemodel:1527: 1459 active elements
14:07:07 DEBUG opendrift.models.basemodel:1538: 59.12215320091653 <- latitude -> 59.17297062627884
14:07:07 DEBUG opendrift.models.basemodel:1543: 10.944858768254349 <- longitude -> 11.023971635517519
14:07:07 DEBUG opendrift.models.basemodel:1548: -13.381025918129037 <- z -> 0.0
14:07:07 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:07 DEBUG opendrift.models.basemodel:836: Lifting 79 elements to seafloor.
14:07:07 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:07 INFO opendrift.models.basemodel:2882: 2023-09-01 20:56:21.121579 - step 42 of 216 - 1459 active elements (0 deactivated)
14:07:07 DEBUG opendrift.models.basemodel:2888: 8541 elements scheduled.
14:07:07 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:07 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:07 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:07 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:07 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:07 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:07 DEBUG opendrift.models.basemodel:1253: Data needed for 1459 elements
14:07:07 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:07 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:07 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:07 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:07 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:07 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:07 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:07 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:07 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:07 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:07 DEBUG opendrift.models.basemodel:1253: Data needed for 1459 elements
14:07:07 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:07 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 20:00:00 (before)
2023-09-01 21:00:00 (after)
14:07:08 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:08 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:08 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:08 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:08 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:08 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:08 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 21x21x5) for time after (2023-09-01 21:00:00)
14:07:08 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 20:00:00) in space (linearNDFast)
14:07:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:08 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 21:00:00) in space (linearNDFast)
14:07:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 402 elements, expanding data 1
14:07:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 402 elements, expanding data 1
14:07:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 440 elements, expanding data 1
14:07:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
14:07:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 440 elements, expanding data 1
14:07:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
14:07:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 440 elements, expanding data 1
14:07:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
14:07:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 440 elements, expanding data 1
14:07:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
14:07:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 440 elements, expanding data 1
14:07:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
14:07:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 878 elements, expanding data 1
14:07:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 2
14:07:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 878 elements, expanding data 1
14:07:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 2
14:07:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 878 elements, expanding data 1
14:07:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 2
14:07:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 878 elements, expanding data 1
14:07:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 2
14:07:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 878 elements, expanding data 1
14:07:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 2
14:07:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 402 elements, expanding data 1
14:07:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 402 elements, expanding data 1
14:07:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 402 elements, expanding data 1
14:07:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 402 elements, expanding data 1
14:07:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 402 elements, expanding data 1
14:07:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:08 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 20:00:00, weight 0.06) and
after (2023-09-01 21:00:00, weight 0.94) in time
14:07:08 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.055151783476035 and -58.976038915363795 degrees.
14:07:08 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.055151783476035 and -58.976038915363795 degrees.
14:07:08 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:08 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:08 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:08 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:08 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:08 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:08 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.741665 (min) 1.07668 (max)
14:07:08 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.00704 (min) 0.690829 (max)
14:07:08 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -6.75556e-05 (min) 0.000389528 (max)
14:07:08 DEBUG opendrift.models.basemodel:1524: x_wind: -4.74264 (min) 10.3594 (max)
14:07:08 DEBUG opendrift.models.basemodel:1524: y_wind: -8.65437 (min) 5.84289 (max)
14:07:08 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:08 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:08 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:08 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:08 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:08 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:08 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:08 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.136 (max)
14:07:08 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:08 DEBUG opendrift.models.basemodel:1527: 1459 active elements
14:07:08 DEBUG opendrift.models.basemodel:1538: 59.12215320091653 <- latitude -> 59.17297062627884
14:07:08 DEBUG opendrift.models.basemodel:1543: 10.944858768254349 <- longitude -> 11.023971635517519
14:07:08 DEBUG opendrift.models.basemodel:1548: -13.304888725280762 <- z -> 0.0
14:07:08 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:08 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:08 DEBUG opendrift.models.physics_methods:1050: min: 0.029864, mean: 2.599521, max: 9.007621
14:07:08 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.029864, mean: 2.599521, max: 9.007621
14:07:08 DEBUG opendrift.models.basemodel:813: 111 elements hit coastline, moving back to water
14:07:08 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:07:08 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:08 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:08 DEBUG opendrift.models.physics_methods:828: Advecting 35 of 1459 elements above 0.100m with wind-sheared ocean current (0.017442 m/s - 0.107845 m/s)
14:07:08 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:08 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:08 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10040150647218704
14:07:08 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:08 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:08 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:08 DEBUG opendrift.models.oceandrift:582: 135 elements penetrated seafloor, lifting up
14:07:08 DEBUG opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
14:07:08 DEBUG opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
14:07:08 DEBUG opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
14:07:08 DEBUG opendrift.models.oceandrift:582: 83 elements penetrated seafloor, lifting up
14:07:08 DEBUG opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
14:07:08 DEBUG opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
14:07:08 DEBUG opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
14:07:08 DEBUG opendrift.models.oceandrift:582: 85 elements penetrated seafloor, lifting up
14:07:08 DEBUG opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:07:08 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:08 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:07:08 DEBUG opendrift.models.oceandrift:582: 82 elements penetrated seafloor, lifting up
14:07:08 DEBUG opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
14:07:08 DEBUG opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
14:07:08 DEBUG opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
14:07:08 DEBUG opendrift.models.oceandrift:582: 78 elements penetrated seafloor, lifting up
14:07:08 DEBUG opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
14:07:08 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
14:07:08 DEBUG opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
14:07:08 DEBUG opendrift.models.oceandrift:582: 90 elements penetrated seafloor, lifting up
14:07:08 DEBUG opendrift.models.oceandrift:600: 17 elements reached seafloor, set to bottom
14:07:08 DEBUG opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
14:07:08 DEBUG opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
14:07:08 DEBUG opendrift.models.oceandrift:582: 93 elements penetrated seafloor, lifting up
14:07:08 DEBUG opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
14:07:08 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
14:07:08 DEBUG opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
14:07:08 DEBUG opendrift.models.oceandrift:582: 76 elements penetrated seafloor, lifting up
14:07:08 DEBUG opendrift.models.oceandrift:600: 20 elements reached seafloor, set to bottom
14:07:08 DEBUG opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
14:07:08 DEBUG opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
14:07:08 DEBUG opendrift.models.oceandrift:582: 70 elements penetrated seafloor, lifting up
14:07:08 DEBUG opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:07:08 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:08 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:07:08 DEBUG opendrift.models.oceandrift:582: 63 elements penetrated seafloor, lifting up
14:07:08 DEBUG opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:07:08 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:07:08 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:07:08 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:08 DEBUG opendrift.models.basemodel:2945: 1459 active elements (0 deactivated)
14:07:08 DEBUG opendrift.models.basemodel:1658: to be seeded: 8541, already seeded 1459
14:07:08 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:07:08 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:08 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:08 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:08 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:08 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:08 DEBUG opendrift.models.basemodel:1253: Data needed for 1493 elements
14:07:08 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:08 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 21:00:00 (before)
2023-09-01 22:00:00 (after)
14:07:08 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 21:00:00) in space (linearNDFast)
14:07:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:08 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:08 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:08 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:08 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:08 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:08 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.18878 (min) 14.2799 (max)
14:07:08 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:08 DEBUG opendrift.models.basemodel:1527: 1493 active elements
14:07:08 DEBUG opendrift.models.basemodel:1538: 59.12020333963778 <- latitude -> 59.17334955600783
14:07:08 DEBUG opendrift.models.basemodel:1543: 10.94282500658263 <- longitude -> 11.023896050566064
14:07:08 DEBUG opendrift.models.basemodel:1548: -13.949725151062012 <- z -> 0.0
14:07:08 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:08 DEBUG opendrift.models.basemodel:836: Lifting 85 elements to seafloor.
14:07:08 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:08 INFO opendrift.models.basemodel:2882: 2023-09-01 21:06:21.121579 - step 43 of 216 - 1493 active elements (0 deactivated)
14:07:08 DEBUG opendrift.models.basemodel:2888: 8507 elements scheduled.
14:07:08 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:08 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:08 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:08 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:08 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:08 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:08 DEBUG opendrift.models.basemodel:1253: Data needed for 1493 elements
14:07:08 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:08 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:08 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:08 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:08 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:08 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:08 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:08 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:08 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:08 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:08 DEBUG opendrift.models.basemodel:1253: Data needed for 1493 elements
14:07:08 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:08 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 21:00:00 (before)
2023-09-01 22:00:00 (after)
14:07:09 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:09 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:09 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:09 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:09 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:09 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:09 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 21x21x5) for time after (2023-09-01 22:00:00)
14:07:09 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 21:00:00) in space (linearNDFast)
14:07:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:09 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 22:00:00) in space (linearNDFast)
14:07:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 442 elements, expanding data 1
14:07:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 442 elements, expanding data 1
14:07:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 481 elements, expanding data 1
14:07:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
14:07:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 481 elements, expanding data 1
14:07:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
14:07:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 481 elements, expanding data 1
14:07:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
14:07:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 481 elements, expanding data 1
14:07:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
14:07:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 481 elements, expanding data 1
14:07:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
14:07:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 935 elements, expanding data 1
14:07:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 134 elements, expanding data 2
14:07:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 935 elements, expanding data 1
14:07:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 134 elements, expanding data 2
14:07:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 935 elements, expanding data 1
14:07:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 134 elements, expanding data 2
14:07:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 935 elements, expanding data 1
14:07:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 134 elements, expanding data 2
14:07:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 935 elements, expanding data 1
14:07:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 134 elements, expanding data 2
14:07:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 442 elements, expanding data 1
14:07:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 442 elements, expanding data 1
14:07:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 442 elements, expanding data 1
14:07:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 442 elements, expanding data 1
14:07:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 442 elements, expanding data 1
14:07:09 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 21:00:00, weight 0.89) and
after (2023-09-01 22:00:00, weight 0.11) in time
14:07:09 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.057185549422655 and -58.97611449988252 degrees.
14:07:09 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.057185549422655 and -58.97611449988252 degrees.
14:07:09 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:09 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:09 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:09 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:09 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:09 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:09 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.644234 (min) 1.35933 (max)
14:07:09 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.11189 (min) 0.70689 (max)
14:07:09 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -8.84069e-05 (min) 0.00037854 (max)
14:07:09 DEBUG opendrift.models.basemodel:1524: x_wind: -7.50075 (min) 8.12921 (max)
14:07:09 DEBUG opendrift.models.basemodel:1524: y_wind: -7.4699 (min) 4.46478 (max)
14:07:09 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:09 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:09 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:09 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:09 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:09 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:09 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:09 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.18878 (min) 14.2799 (max)
14:07:09 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:09 DEBUG opendrift.models.basemodel:1527: 1493 active elements
14:07:09 DEBUG opendrift.models.basemodel:1538: 59.12020333963778 <- latitude -> 59.17334955600783
14:07:09 DEBUG opendrift.models.basemodel:1543: 10.94282500658263 <- longitude -> 11.023896050566064
14:07:09 DEBUG opendrift.models.basemodel:1548: -13.949725151062012 <- z -> 0.0
14:07:09 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:09 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:09 DEBUG opendrift.models.physics_methods:1050: min: 0.055435, mean: 2.430211, max: 7.300918
14:07:09 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.055435, mean: 2.430211, max: 7.300918
14:07:09 DEBUG opendrift.models.basemodel:813: 112 elements hit coastline, moving back to water
14:07:09 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:07:09 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:09 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:09 DEBUG opendrift.models.physics_methods:828: Advecting 34 of 1493 elements above 0.100m with wind-sheared ocean current (0.007260 m/s - 0.115614 m/s)
14:07:09 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:09 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:09 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.06596054433734894
14:07:09 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:09 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:09 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:09 DEBUG opendrift.models.oceandrift:582: 126 elements penetrated seafloor, lifting up
14:07:09 DEBUG opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
14:07:09 DEBUG opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
14:07:09 DEBUG opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
14:07:09 DEBUG opendrift.models.oceandrift:582: 109 elements penetrated seafloor, lifting up
14:07:09 DEBUG opendrift.models.oceandrift:600: 17 elements reached seafloor, set to bottom
14:07:09 DEBUG opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
14:07:09 DEBUG opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
14:07:09 DEBUG opendrift.models.oceandrift:582: 89 elements penetrated seafloor, lifting up
14:07:09 DEBUG opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
14:07:09 DEBUG opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
14:07:09 DEBUG opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
14:07:09 DEBUG opendrift.models.oceandrift:582: 99 elements penetrated seafloor, lifting up
14:07:09 DEBUG opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
14:07:09 DEBUG opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
14:07:09 DEBUG opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
14:07:09 DEBUG opendrift.models.oceandrift:582: 82 elements penetrated seafloor, lifting up
14:07:09 DEBUG opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:07:09 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:07:09 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:07:09 DEBUG opendrift.models.oceandrift:582: 93 elements penetrated seafloor, lifting up
14:07:09 DEBUG opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
14:07:09 DEBUG opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
14:07:09 DEBUG opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
14:07:09 DEBUG opendrift.models.oceandrift:582: 82 elements penetrated seafloor, lifting up
14:07:09 DEBUG opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
14:07:09 DEBUG opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
14:07:09 DEBUG opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
14:07:09 DEBUG opendrift.models.oceandrift:582: 65 elements penetrated seafloor, lifting up
14:07:09 DEBUG opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
14:07:09 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
14:07:09 DEBUG opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
14:07:09 DEBUG opendrift.models.oceandrift:582: 86 elements penetrated seafloor, lifting up
14:07:09 DEBUG opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
14:07:09 DEBUG opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
14:07:09 DEBUG opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
14:07:09 DEBUG opendrift.models.oceandrift:582: 77 elements penetrated seafloor, lifting up
14:07:09 DEBUG opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
14:07:09 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
14:07:09 DEBUG opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
14:07:09 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:09 DEBUG opendrift.models.basemodel:2945: 1493 active elements (0 deactivated)
14:07:09 DEBUG opendrift.models.basemodel:1658: to be seeded: 8507, already seeded 1493
14:07:09 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:07:09 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:09 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:09 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:09 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:09 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:09 DEBUG opendrift.models.basemodel:1253: Data needed for 1528 elements
14:07:09 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:09 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 21:00:00 (before)
2023-09-01 22:00:00 (after)
14:07:09 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 21:00:00) in space (linearNDFast)
14:07:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:09 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:09 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:09 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:09 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:09 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:09 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.11896 (min) 14.2556 (max)
14:07:09 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:09 DEBUG opendrift.models.basemodel:1527: 1528 active elements
14:07:09 DEBUG opendrift.models.basemodel:1538: 59.12050328434708 <- latitude -> 59.173431027621056
14:07:09 DEBUG opendrift.models.basemodel:1543: 10.942794442891497 <- longitude -> 11.02445144772096
14:07:09 DEBUG opendrift.models.basemodel:1548: -13.949725151062012 <- z -> 0.0
14:07:09 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:09 DEBUG opendrift.models.basemodel:836: Lifting 74 elements to seafloor.
14:07:09 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:09 INFO opendrift.models.basemodel:2882: 2023-09-01 21:16:21.121579 - step 44 of 216 - 1528 active elements (0 deactivated)
14:07:09 DEBUG opendrift.models.basemodel:2888: 8472 elements scheduled.
14:07:09 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:09 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:09 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:09 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:09 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:09 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:09 DEBUG opendrift.models.basemodel:1253: Data needed for 1528 elements
14:07:09 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:09 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:09 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:09 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:09 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:09 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:09 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:09 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:09 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:09 DEBUG opendrift.models.basemodel:1253: Data needed for 1528 elements
14:07:09 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:09 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 21:00:00 (before)
2023-09-01 22:00:00 (after)
14:07:10 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:10 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:10 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:10 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:10 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:10 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:10 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 21x21x5) for time after (2023-09-01 22:00:00)
14:07:10 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 21:00:00) in space (linearNDFast)
14:07:10 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:10 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 22:00:00) in space (linearNDFast)
14:07:10 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 456 elements, expanding data 1
14:07:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 456 elements, expanding data 1
14:07:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 499 elements, expanding data 1
14:07:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
14:07:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 499 elements, expanding data 1
14:07:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
14:07:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 499 elements, expanding data 1
14:07:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
14:07:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 499 elements, expanding data 1
14:07:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
14:07:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 499 elements, expanding data 1
14:07:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
14:07:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 943 elements, expanding data 1
14:07:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 142 elements, expanding data 2
14:07:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 943 elements, expanding data 1
14:07:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 142 elements, expanding data 2
14:07:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 943 elements, expanding data 1
14:07:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 142 elements, expanding data 2
14:07:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 943 elements, expanding data 1
14:07:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 142 elements, expanding data 2
14:07:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 943 elements, expanding data 1
14:07:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 142 elements, expanding data 2
14:07:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 456 elements, expanding data 1
14:07:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 456 elements, expanding data 1
14:07:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 456 elements, expanding data 1
14:07:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 456 elements, expanding data 1
14:07:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 456 elements, expanding data 1
14:07:10 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 21:00:00, weight 0.73) and
after (2023-09-01 22:00:00, weight 0.27) in time
14:07:10 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.057216117108915 and -58.97555911333478 degrees.
14:07:10 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.057216117108915 and -58.97555911333478 degrees.
14:07:10 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:10 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:10 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:10 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:10 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:10 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:10 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.665184 (min) 1.18606 (max)
14:07:10 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.02103 (min) 0.72361 (max)
14:07:10 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -7.57026e-05 (min) 0.000332069 (max)
14:07:10 DEBUG opendrift.models.basemodel:1524: x_wind: -5.53757 (min) 9.00762 (max)
14:07:10 DEBUG opendrift.models.basemodel:1524: y_wind: -6.38341 (min) 5.81479 (max)
14:07:10 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:10 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:10 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:10 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:10 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:10 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:10 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:10 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.11896 (min) 14.2556 (max)
14:07:10 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:10 DEBUG opendrift.models.basemodel:1527: 1528 active elements
14:07:10 DEBUG opendrift.models.basemodel:1538: 59.12050328434708 <- latitude -> 59.173431027621056
14:07:10 DEBUG opendrift.models.basemodel:1543: 10.942794442891497 <- longitude -> 11.02445144772096
14:07:10 DEBUG opendrift.models.basemodel:1548: -13.949725151062012 <- z -> 0.0
14:07:10 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:10 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:10 DEBUG opendrift.models.physics_methods:1050: min: 0.051533, mean: 2.242433, max: 7.715954
14:07:10 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.051533, mean: 2.242433, max: 7.715954
14:07:10 DEBUG opendrift.models.basemodel:813: 121 elements hit coastline, moving back to water
14:07:10 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:07:10 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:10 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:10 DEBUG opendrift.models.physics_methods:828: Advecting 35 of 1528 elements above 0.100m with wind-sheared ocean current (0.004441 m/s - 0.142664 m/s)
14:07:10 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:10 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:10 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07367254792674065
14:07:10 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:10 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:10 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:10 DEBUG opendrift.models.oceandrift:582: 139 elements penetrated seafloor, lifting up
14:07:10 DEBUG opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
14:07:10 DEBUG opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
14:07:10 DEBUG opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
14:07:10 DEBUG opendrift.models.oceandrift:582: 100 elements penetrated seafloor, lifting up
14:07:10 DEBUG opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
14:07:10 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
14:07:10 DEBUG opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
14:07:10 DEBUG opendrift.models.oceandrift:582: 94 elements penetrated seafloor, lifting up
14:07:10 DEBUG opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
14:07:10 DEBUG opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
14:07:10 DEBUG opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
14:07:10 DEBUG opendrift.models.oceandrift:582: 100 elements penetrated seafloor, lifting up
14:07:10 DEBUG opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
14:07:10 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
14:07:10 DEBUG opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
14:07:10 DEBUG opendrift.models.oceandrift:582: 86 elements penetrated seafloor, lifting up
14:07:10 DEBUG opendrift.models.oceandrift:600: 23 elements reached seafloor, set to bottom
14:07:10 DEBUG opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
14:07:10 DEBUG opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
14:07:10 DEBUG opendrift.models.oceandrift:582: 81 elements penetrated seafloor, lifting up
14:07:10 DEBUG opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
14:07:10 DEBUG opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
14:07:10 DEBUG opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
14:07:10 DEBUG opendrift.models.oceandrift:582: 80 elements penetrated seafloor, lifting up
14:07:10 DEBUG opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:07:10 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:10 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:07:10 DEBUG opendrift.models.oceandrift:582: 74 elements penetrated seafloor, lifting up
14:07:10 DEBUG opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
14:07:10 DEBUG opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
14:07:10 DEBUG opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
14:07:10 DEBUG opendrift.models.oceandrift:582: 58 elements penetrated seafloor, lifting up
14:07:10 DEBUG opendrift.models.oceandrift:600: 11 elements reached seafloor, set to bottom
14:07:10 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
14:07:10 DEBUG opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
14:07:10 DEBUG opendrift.models.oceandrift:582: 72 elements penetrated seafloor, lifting up
14:07:10 DEBUG opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:07:10 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:10 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:07:10 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:10 DEBUG opendrift.models.basemodel:2945: 1528 active elements (0 deactivated)
14:07:10 DEBUG opendrift.models.basemodel:1658: to be seeded: 8472, already seeded 1528
14:07:10 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:07:10 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:10 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:10 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:10 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:10 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:10 DEBUG opendrift.models.basemodel:1253: Data needed for 1563 elements
14:07:10 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:10 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 21:00:00 (before)
2023-09-01 22:00:00 (after)
14:07:10 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 21:00:00) in space (linearNDFast)
14:07:10 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:10 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:10 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:10 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:10 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:10 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:10 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.4656 (max)
14:07:10 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:10 DEBUG opendrift.models.basemodel:1527: 1563 active elements
14:07:10 DEBUG opendrift.models.basemodel:1538: 59.11799321830439 <- latitude -> 59.17489608045607
14:07:10 DEBUG opendrift.models.basemodel:1543: 10.943323986070954 <- longitude -> 11.024607126374907
14:07:10 DEBUG opendrift.models.basemodel:1548: -13.939725151062012 <- z -> 0.0
14:07:10 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:10 DEBUG opendrift.models.basemodel:836: Lifting 95 elements to seafloor.
14:07:10 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:10 INFO opendrift.models.basemodel:2882: 2023-09-01 21:26:21.121579 - step 45 of 216 - 1563 active elements (0 deactivated)
14:07:10 DEBUG opendrift.models.basemodel:2888: 8437 elements scheduled.
14:07:10 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:10 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:10 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:10 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:10 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:10 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:10 DEBUG opendrift.models.basemodel:1253: Data needed for 1563 elements
14:07:10 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:10 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:10 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:10 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:10 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:10 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:10 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:10 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:10 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:10 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:10 DEBUG opendrift.models.basemodel:1253: Data needed for 1563 elements
14:07:10 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:10 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 21:00:00 (before)
2023-09-01 22:00:00 (after)
14:07:11 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:11 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:11 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:11 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:11 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:11 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:11 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 21x21x5) for time after (2023-09-01 22:00:00)
14:07:11 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 21:00:00) in space (linearNDFast)
14:07:11 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:11 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 22:00:00) in space (linearNDFast)
14:07:11 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 497 elements, expanding data 1
14:07:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:07:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 497 elements, expanding data 1
14:07:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:07:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 535 elements, expanding data 1
14:07:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 2
14:07:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 535 elements, expanding data 1
14:07:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 2
14:07:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 535 elements, expanding data 1
14:07:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 2
14:07:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 535 elements, expanding data 1
14:07:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 2
14:07:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 535 elements, expanding data 1
14:07:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 2
14:07:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1010 elements, expanding data 1
14:07:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 2
14:07:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1010 elements, expanding data 1
14:07:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 2
14:07:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1010 elements, expanding data 1
14:07:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 2
14:07:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1010 elements, expanding data 1
14:07:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 2
14:07:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1010 elements, expanding data 1
14:07:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 2
14:07:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 497 elements, expanding data 1
14:07:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:07:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 497 elements, expanding data 1
14:07:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:07:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 497 elements, expanding data 1
14:07:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:07:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 497 elements, expanding data 1
14:07:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:07:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 497 elements, expanding data 1
14:07:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:07:11 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 21:00:00, weight 0.56) and
after (2023-09-01 22:00:00, weight 0.44) in time
14:07:11 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.056686568271715 and -58.97540343453195 degrees.
14:07:11 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.056686568271715 and -58.97540343453195 degrees.
14:07:11 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:11 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:11 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:11 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:11 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:11 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:11 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.652314 (min) 1.31229 (max)
14:07:11 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.13652 (min) 0.890972 (max)
14:07:11 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -8.99377e-05 (min) 0.000492968 (max)
14:07:11 DEBUG opendrift.models.basemodel:1524: x_wind: -5.38657 (min) 7.56703 (max)
14:07:11 DEBUG opendrift.models.basemodel:1524: y_wind: -6.83741 (min) 5.92725 (max)
14:07:11 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:11 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:11 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:11 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:11 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:11 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:11 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:11 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.4656 (max)
14:07:11 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:11 DEBUG opendrift.models.basemodel:1527: 1563 active elements
14:07:11 DEBUG opendrift.models.basemodel:1538: 59.11799321830439 <- latitude -> 59.17489608045607
14:07:11 DEBUG opendrift.models.basemodel:1543: 10.943323986070954 <- longitude -> 11.024607126374907
14:07:11 DEBUG opendrift.models.basemodel:1548: -13.939725151062012 <- z -> 0.0
14:07:11 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:11 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:11 DEBUG opendrift.models.physics_methods:1050: min: 0.014745, mean: 2.223159, max: 6.887453
14:07:11 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.014745, mean: 2.223159, max: 6.887453
14:07:11 DEBUG opendrift.models.basemodel:813: 113 elements hit coastline, moving back to water
14:07:11 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
14:07:11 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:11 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:11 DEBUG opendrift.models.physics_methods:828: Advecting 35 of 1563 elements above 0.100m with wind-sheared ocean current (0.011686 m/s - 0.103610 m/s)
14:07:11 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:11 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:11 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.058701590850906364
14:07:11 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:11 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:11 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:11 DEBUG opendrift.models.oceandrift:582: 142 elements penetrated seafloor, lifting up
14:07:11 DEBUG opendrift.models.oceandrift:600: 17 elements reached seafloor, set to bottom
14:07:11 DEBUG opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
14:07:11 DEBUG opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
14:07:11 DEBUG opendrift.models.oceandrift:582: 118 elements penetrated seafloor, lifting up
14:07:11 DEBUG opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
14:07:11 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
14:07:11 DEBUG opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
14:07:11 DEBUG opendrift.models.oceandrift:582: 111 elements penetrated seafloor, lifting up
14:07:11 DEBUG opendrift.models.oceandrift:600: 17 elements reached seafloor, set to bottom
14:07:11 DEBUG opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
14:07:11 DEBUG opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
14:07:11 DEBUG opendrift.models.oceandrift:582: 86 elements penetrated seafloor, lifting up
14:07:11 DEBUG opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
14:07:11 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
14:07:11 DEBUG opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
14:07:11 DEBUG opendrift.models.oceandrift:582: 86 elements penetrated seafloor, lifting up
14:07:11 DEBUG opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:07:11 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:11 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:07:11 DEBUG opendrift.models.oceandrift:582: 94 elements penetrated seafloor, lifting up
14:07:11 DEBUG opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
14:07:11 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
14:07:11 DEBUG opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
14:07:11 DEBUG opendrift.models.oceandrift:582: 86 elements penetrated seafloor, lifting up
14:07:11 DEBUG opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
14:07:11 DEBUG opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
14:07:11 DEBUG opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
14:07:11 DEBUG opendrift.models.oceandrift:582: 91 elements penetrated seafloor, lifting up
14:07:11 DEBUG opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
14:07:11 DEBUG opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
14:07:11 DEBUG opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
14:07:11 DEBUG opendrift.models.oceandrift:582: 85 elements penetrated seafloor, lifting up
14:07:11 DEBUG opendrift.models.oceandrift:600: 19 elements reached seafloor, set to bottom
14:07:11 DEBUG opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
14:07:11 DEBUG opendrift.models.sedimentdrift:112: Settling 19 elements at seafloor
14:07:11 DEBUG opendrift.models.oceandrift:582: 80 elements penetrated seafloor, lifting up
14:07:11 DEBUG opendrift.models.oceandrift:600: 17 elements reached seafloor, set to bottom
14:07:11 DEBUG opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
14:07:11 DEBUG opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
14:07:11 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:11 DEBUG opendrift.models.basemodel:2945: 1563 active elements (0 deactivated)
14:07:11 DEBUG opendrift.models.basemodel:1658: to be seeded: 8437, already seeded 1563
14:07:11 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:07:11 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:11 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:11 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:11 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:11 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:11 DEBUG opendrift.models.basemodel:1253: Data needed for 1598 elements
14:07:11 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:11 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 21:00:00 (before)
2023-09-01 22:00:00 (after)
14:07:11 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 21:00:00) in space (linearNDFast)
14:07:11 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:11 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:11 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:11 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:11 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:11 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:11 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.56 (max)
14:07:11 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:11 DEBUG opendrift.models.basemodel:1527: 1598 active elements
14:07:11 DEBUG opendrift.models.basemodel:1538: 59.11638796640737 <- latitude -> 59.1746729292698
14:07:11 DEBUG opendrift.models.basemodel:1543: 10.942817074775714 <- longitude -> 11.024141800902857
14:07:11 DEBUG opendrift.models.basemodel:1548: -13.044710159301758 <- z -> 0.0
14:07:11 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:11 DEBUG opendrift.models.basemodel:836: Lifting 100 elements to seafloor.
14:07:11 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:11 INFO opendrift.models.basemodel:2882: 2023-09-01 21:36:21.121579 - step 46 of 216 - 1598 active elements (0 deactivated)
14:07:11 DEBUG opendrift.models.basemodel:2888: 8402 elements scheduled.
14:07:11 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:11 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:11 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:11 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:11 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:11 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:11 DEBUG opendrift.models.basemodel:1253: Data needed for 1598 elements
14:07:11 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:11 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:11 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:11 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:11 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:11 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:11 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:11 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:11 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:11 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:11 DEBUG opendrift.models.basemodel:1253: Data needed for 1598 elements
14:07:11 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:11 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 21:00:00 (before)
2023-09-01 22:00:00 (after)
14:07:12 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:12 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:12 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:12 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:12 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:12 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:12 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 22x21x5) for time after (2023-09-01 22:00:00)
14:07:12 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 21:00:00) in space (linearNDFast)
14:07:12 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:12 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 22:00:00) in space (linearNDFast)
14:07:12 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 531 elements, expanding data 1
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 531 elements, expanding data 1
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 570 elements, expanding data 1
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 23 elements, expanding data 2
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 570 elements, expanding data 1
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 23 elements, expanding data 2
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 570 elements, expanding data 1
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 23 elements, expanding data 2
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 570 elements, expanding data 1
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 23 elements, expanding data 2
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 570 elements, expanding data 1
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 23 elements, expanding data 2
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1044 elements, expanding data 1
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 173 elements, expanding data 2
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1044 elements, expanding data 1
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 173 elements, expanding data 2
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1044 elements, expanding data 1
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 173 elements, expanding data 2
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1044 elements, expanding data 1
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 173 elements, expanding data 2
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1044 elements, expanding data 1
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 173 elements, expanding data 2
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 531 elements, expanding data 1
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 531 elements, expanding data 1
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 531 elements, expanding data 1
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 531 elements, expanding data 1
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 531 elements, expanding data 1
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:12 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 21:00:00, weight 0.39) and
after (2023-09-01 22:00:00, weight 0.61) in time
14:07:12 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05719350130077 and -58.97586875384107 degrees.
14:07:12 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05719350130077 and -58.97586875384107 degrees.
14:07:12 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:12 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:12 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:12 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:12 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:12 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:12 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.718284 (min) 1.31475 (max)
14:07:12 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.03237 (min) 0.68611 (max)
14:07:12 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000112346 (min) 0.000468975 (max)
14:07:12 DEBUG opendrift.models.basemodel:1524: x_wind: -6.2717 (min) 7.61332 (max)
14:07:12 DEBUG opendrift.models.basemodel:1524: y_wind: -7.63641 (min) 6.69065 (max)
14:07:12 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:12 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:12 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:12 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:12 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:12 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:12 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:12 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.56 (max)
14:07:12 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:12 DEBUG opendrift.models.basemodel:1527: 1598 active elements
14:07:12 DEBUG opendrift.models.basemodel:1538: 59.11638796640737 <- latitude -> 59.1746729292698
14:07:12 DEBUG opendrift.models.basemodel:1543: 10.942817074775714 <- longitude -> 11.024141800902857
14:07:12 DEBUG opendrift.models.basemodel:1548: -13.044710159301758 <- z -> 0.0
14:07:12 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:12 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:12 DEBUG opendrift.models.physics_methods:1050: min: 0.121077, mean: 2.192785, max: 6.593874
14:07:12 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.121077, mean: 2.192785, max: 6.593874
14:07:12 DEBUG opendrift.models.basemodel:813: 125 elements hit coastline, moving back to water
14:07:12 DEBUG opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
14:07:12 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:12 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:12 DEBUG opendrift.models.physics_methods:828: Advecting 35 of 1598 elements above 0.100m with wind-sheared ocean current (0.015543 m/s - 0.122241 m/s)
14:07:12 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:12 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:12 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.05380424207528114
14:07:12 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:12 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:12 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:12 DEBUG opendrift.models.oceandrift:582: 136 elements penetrated seafloor, lifting up
14:07:12 DEBUG opendrift.models.oceandrift:600: 23 elements reached seafloor, set to bottom
14:07:12 DEBUG opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
14:07:12 DEBUG opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
14:07:12 DEBUG opendrift.models.oceandrift:582: 108 elements penetrated seafloor, lifting up
14:07:12 DEBUG opendrift.models.oceandrift:600: 20 elements reached seafloor, set to bottom
14:07:12 DEBUG opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
14:07:12 DEBUG opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
14:07:12 DEBUG opendrift.models.oceandrift:582: 105 elements penetrated seafloor, lifting up
14:07:12 DEBUG opendrift.models.oceandrift:600: 23 elements reached seafloor, set to bottom
14:07:12 DEBUG opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
14:07:12 DEBUG opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
14:07:12 DEBUG opendrift.models.oceandrift:582: 99 elements penetrated seafloor, lifting up
14:07:12 DEBUG opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
14:07:12 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
14:07:12 DEBUG opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
14:07:12 DEBUG opendrift.models.oceandrift:582: 91 elements penetrated seafloor, lifting up
14:07:12 DEBUG opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
14:07:12 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
14:07:12 DEBUG opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
14:07:12 DEBUG opendrift.models.oceandrift:582: 91 elements penetrated seafloor, lifting up
14:07:12 DEBUG opendrift.models.oceandrift:600: 17 elements reached seafloor, set to bottom
14:07:12 DEBUG opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
14:07:12 DEBUG opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
14:07:12 DEBUG opendrift.models.oceandrift:582: 69 elements penetrated seafloor, lifting up
14:07:12 DEBUG opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
14:07:12 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
14:07:12 DEBUG opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
14:07:12 DEBUG opendrift.models.oceandrift:582: 71 elements penetrated seafloor, lifting up
14:07:12 DEBUG opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:07:12 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:07:12 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:07:12 DEBUG opendrift.models.oceandrift:582: 94 elements penetrated seafloor, lifting up
14:07:12 DEBUG opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:07:12 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:12 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:07:12 DEBUG opendrift.models.oceandrift:582: 74 elements penetrated seafloor, lifting up
14:07:12 DEBUG opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
14:07:12 DEBUG opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
14:07:12 DEBUG opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
14:07:12 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:12 DEBUG opendrift.models.basemodel:2945: 1598 active elements (0 deactivated)
14:07:12 DEBUG opendrift.models.basemodel:1658: to be seeded: 8402, already seeded 1598
14:07:12 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:07:12 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:12 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:12 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:12 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:12 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:12 DEBUG opendrift.models.basemodel:1253: Data needed for 1632 elements
14:07:12 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:12 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 21:00:00 (before)
2023-09-01 22:00:00 (after)
14:07:12 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 21:00:00) in space (linearNDFast)
14:07:12 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:12 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:12 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:12 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:12 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:12 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:12 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.6525 (max)
14:07:12 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:12 DEBUG opendrift.models.basemodel:1527: 1632 active elements
14:07:12 DEBUG opendrift.models.basemodel:1538: 59.11496068249856 <- latitude -> 59.17557207769045
14:07:12 DEBUG opendrift.models.basemodel:1543: 10.943266547319487 <- longitude -> 11.026885140837498
14:07:12 DEBUG opendrift.models.basemodel:1548: -13.890298843383789 <- z -> 0.0
14:07:12 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:12 DEBUG opendrift.models.basemodel:836: Lifting 101 elements to seafloor.
14:07:12 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:12 INFO opendrift.models.basemodel:2882: 2023-09-01 21:46:21.121579 - step 47 of 216 - 1632 active elements (0 deactivated)
14:07:12 DEBUG opendrift.models.basemodel:2888: 8368 elements scheduled.
14:07:12 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:12 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:12 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:12 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:12 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:12 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:12 DEBUG opendrift.models.basemodel:1253: Data needed for 1632 elements
14:07:12 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:12 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:12 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:12 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:12 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:12 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:12 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:12 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:12 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:12 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:12 DEBUG opendrift.models.basemodel:1253: Data needed for 1632 elements
14:07:12 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:12 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 21:00:00 (before)
2023-09-01 22:00:00 (after)
14:07:12 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:12 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:12 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:12 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:12 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:12 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:12 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 22x21x5) for time after (2023-09-01 22:00:00)
14:07:12 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 21:00:00) in space (linearNDFast)
14:07:12 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:12 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 22:00:00) in space (linearNDFast)
14:07:12 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 559 elements, expanding data 1
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 559 elements, expanding data 1
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 601 elements, expanding data 1
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 601 elements, expanding data 1
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 601 elements, expanding data 1
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 601 elements, expanding data 1
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 601 elements, expanding data 1
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1057 elements, expanding data 1
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 175 elements, expanding data 2
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1057 elements, expanding data 1
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 175 elements, expanding data 2
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1057 elements, expanding data 1
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 175 elements, expanding data 2
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1057 elements, expanding data 1
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 175 elements, expanding data 2
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1057 elements, expanding data 1
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 175 elements, expanding data 2
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 559 elements, expanding data 1
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 559 elements, expanding data 1
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 559 elements, expanding data 1
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 559 elements, expanding data 1
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 559 elements, expanding data 1
14:07:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:12 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 21:00:00, weight 0.23) and
after (2023-09-01 22:00:00, weight 0.77) in time
14:07:12 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05674402200603 and -58.97312541715773 degrees.
14:07:12 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05674402200603 and -58.97312541715773 degrees.
14:07:12 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:12 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:12 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:12 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:12 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:12 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:12 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.659605 (min) 1.30384 (max)
14:07:12 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.0729 (min) 0.684323 (max)
14:07:12 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000152525 (min) 0.000455732 (max)
14:07:12 DEBUG opendrift.models.basemodel:1524: x_wind: -6.748 (min) 8.14593 (max)
14:07:12 DEBUG opendrift.models.basemodel:1524: y_wind: -7.03028 (min) 6.82734 (max)
14:07:12 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:12 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:12 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:12 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:12 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:12 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:12 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:12 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.6525 (max)
14:07:12 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:12 DEBUG opendrift.models.basemodel:1527: 1632 active elements
14:07:12 DEBUG opendrift.models.basemodel:1538: 59.11496068249856 <- latitude -> 59.17557207769045
14:07:12 DEBUG opendrift.models.basemodel:1543: 10.943266547319487 <- longitude -> 11.026885140837498
14:07:12 DEBUG opendrift.models.basemodel:1548: -13.833662986755371 <- z -> 0.0
14:07:12 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:12 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:12 DEBUG opendrift.models.physics_methods:1050: min: 0.010456, mean: 2.124527, max: 7.099046
14:07:12 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.010456, mean: 2.124527, max: 7.099046
14:07:12 DEBUG opendrift.models.basemodel:813: 120 elements hit coastline, moving back to water
14:07:12 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:07:12 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:12 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:12 DEBUG opendrift.models.physics_methods:828: Advecting 35 of 1632 elements above 0.100m with wind-sheared ocean current (0.001403 m/s - 0.111664 m/s)
14:07:12 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:12 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:12 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.06236353582437514
14:07:12 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:12 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:12 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:12 DEBUG opendrift.models.oceandrift:582: 149 elements penetrated seafloor, lifting up
14:07:12 DEBUG opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
14:07:12 DEBUG opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
14:07:12 DEBUG opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
14:07:12 DEBUG opendrift.models.oceandrift:582: 111 elements penetrated seafloor, lifting up
14:07:12 DEBUG opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
14:07:12 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
14:07:12 DEBUG opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
14:07:12 DEBUG opendrift.models.oceandrift:582: 118 elements penetrated seafloor, lifting up
14:07:12 DEBUG opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
14:07:12 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
14:07:12 DEBUG opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
14:07:12 DEBUG opendrift.models.oceandrift:582: 103 elements penetrated seafloor, lifting up
14:07:12 DEBUG opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
14:07:12 DEBUG opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
14:07:12 DEBUG opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
14:07:12 DEBUG opendrift.models.oceandrift:582: 105 elements penetrated seafloor, lifting up
14:07:12 DEBUG opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
14:07:12 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
14:07:12 DEBUG opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
14:07:12 DEBUG opendrift.models.oceandrift:582: 77 elements penetrated seafloor, lifting up
14:07:12 DEBUG opendrift.models.oceandrift:600: 20 elements reached seafloor, set to bottom
14:07:12 DEBUG opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
14:07:12 DEBUG opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
14:07:12 DEBUG opendrift.models.oceandrift:582: 90 elements penetrated seafloor, lifting up
14:07:12 DEBUG opendrift.models.oceandrift:600: 11 elements reached seafloor, set to bottom
14:07:12 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
14:07:12 DEBUG opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
14:07:12 DEBUG opendrift.models.oceandrift:582: 84 elements penetrated seafloor, lifting up
14:07:12 DEBUG opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
14:07:12 DEBUG opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
14:07:12 DEBUG opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
14:07:12 DEBUG opendrift.models.oceandrift:582: 82 elements penetrated seafloor, lifting up
14:07:12 DEBUG opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
14:07:12 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
14:07:12 DEBUG opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
14:07:12 DEBUG opendrift.models.oceandrift:582: 80 elements penetrated seafloor, lifting up
14:07:12 DEBUG opendrift.models.oceandrift:600: 20 elements reached seafloor, set to bottom
14:07:12 DEBUG opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
14:07:12 DEBUG opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
14:07:12 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:12 DEBUG opendrift.models.basemodel:2945: 1632 active elements (0 deactivated)
14:07:12 DEBUG opendrift.models.basemodel:1658: to be seeded: 8368, already seeded 1632
14:07:12 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:07:12 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:12 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:12 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:12 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:12 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:12 DEBUG opendrift.models.basemodel:1253: Data needed for 1667 elements
14:07:12 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:12 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 21:00:00 (before)
2023-09-01 22:00:00 (after)
14:07:12 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 21:00:00) in space (linearNDFast)
14:07:12 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:12 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:12 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:12 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:12 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:12 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:12 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.6923 (max)
14:07:12 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:12 DEBUG opendrift.models.basemodel:1527: 1667 active elements
14:07:12 DEBUG opendrift.models.basemodel:1538: 59.1141606129532 <- latitude -> 59.17493722799149
14:07:12 DEBUG opendrift.models.basemodel:1543: 10.943705041397147 <- longitude -> 11.024384690532765
14:07:12 DEBUG opendrift.models.basemodel:1548: -13.833662986755371 <- z -> 0.0
14:07:12 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:12 DEBUG opendrift.models.basemodel:836: Lifting 101 elements to seafloor.
14:07:12 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:12 INFO opendrift.models.basemodel:2882: 2023-09-01 21:56:21.121579 - step 48 of 216 - 1667 active elements (0 deactivated)
14:07:12 DEBUG opendrift.models.basemodel:2888: 8333 elements scheduled.
14:07:12 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:12 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:12 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:12 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:12 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:12 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:12 DEBUG opendrift.models.basemodel:1253: Data needed for 1667 elements
14:07:12 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:12 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:12 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:12 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:12 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:12 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:12 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:12 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:12 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:12 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:12 DEBUG opendrift.models.basemodel:1253: Data needed for 1667 elements
14:07:12 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:12 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 21:00:00 (before)
2023-09-01 22:00:00 (after)
14:07:13 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:13 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:13 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:13 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:13 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:13 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:13 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 21x21x5) for time after (2023-09-01 22:00:00)
14:07:13 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 21:00:00) in space (linearNDFast)
14:07:13 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:13 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 22:00:00) in space (linearNDFast)
14:07:13 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 569 elements, expanding data 1
14:07:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 569 elements, expanding data 1
14:07:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 609 elements, expanding data 1
14:07:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 2
14:07:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 609 elements, expanding data 1
14:07:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 2
14:07:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 609 elements, expanding data 1
14:07:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 2
14:07:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 609 elements, expanding data 1
14:07:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 2
14:07:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 609 elements, expanding data 1
14:07:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 2
14:07:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1078 elements, expanding data 1
14:07:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 176 elements, expanding data 2
14:07:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1078 elements, expanding data 1
14:07:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 176 elements, expanding data 2
14:07:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1078 elements, expanding data 1
14:07:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 176 elements, expanding data 2
14:07:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1078 elements, expanding data 1
14:07:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 176 elements, expanding data 2
14:07:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1078 elements, expanding data 1
14:07:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 176 elements, expanding data 2
14:07:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 569 elements, expanding data 1
14:07:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 569 elements, expanding data 1
14:07:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 569 elements, expanding data 1
14:07:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 569 elements, expanding data 1
14:07:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 569 elements, expanding data 1
14:07:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:13 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 21:00:00, weight 0.06) and
after (2023-09-01 22:00:00, weight 0.94) in time
14:07:13 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05630551694698 and -58.97562586209148 degrees.
14:07:13 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05630551694698 and -58.97562586209148 degrees.
14:07:13 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:13 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:13 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:13 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:13 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:13 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:13 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.717269 (min) 1.40322 (max)
14:07:13 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.966987 (min) 0.634292 (max)
14:07:13 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000145768 (min) 0.000498256 (max)
14:07:13 DEBUG opendrift.models.basemodel:1524: x_wind: -7.45839 (min) 7.04314 (max)
14:07:13 DEBUG opendrift.models.basemodel:1524: y_wind: -7.35111 (min) 6.43924 (max)
14:07:13 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:13 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:13 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:13 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:13 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:13 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:13 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:13 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.6923 (max)
14:07:13 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:13 DEBUG opendrift.models.basemodel:1527: 1667 active elements
14:07:13 DEBUG opendrift.models.basemodel:1538: 59.1141606129532 <- latitude -> 59.17493722799149
14:07:13 DEBUG opendrift.models.basemodel:1543: 10.943705041397147 <- longitude -> 11.024384690532765
14:07:13 DEBUG opendrift.models.basemodel:1548: -13.833662986755371 <- z -> 0.0
14:07:13 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:13 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:13 DEBUG opendrift.models.physics_methods:1050: min: 0.026636, mean: 2.201324, max: 6.565767
14:07:13 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.026636, mean: 2.201324, max: 6.565767
14:07:13 DEBUG opendrift.models.basemodel:813: 127 elements hit coastline, moving back to water
14:07:13 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:07:13 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:13 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:13 DEBUG opendrift.models.physics_methods:828: Advecting 35 of 1667 elements above 0.100m with wind-sheared ocean current (0.012292 m/s - 0.097831 m/s)
14:07:13 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:13 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:13 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.05334656626470565
14:07:13 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:13 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:13 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:13 DEBUG opendrift.models.oceandrift:582: 152 elements penetrated seafloor, lifting up
14:07:13 DEBUG opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
14:07:13 DEBUG opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
14:07:13 DEBUG opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
14:07:13 DEBUG opendrift.models.oceandrift:582: 131 elements penetrated seafloor, lifting up
14:07:13 DEBUG opendrift.models.oceandrift:600: 19 elements reached seafloor, set to bottom
14:07:13 DEBUG opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
14:07:13 DEBUG opendrift.models.sedimentdrift:112: Settling 19 elements at seafloor
14:07:13 DEBUG opendrift.models.oceandrift:582: 110 elements penetrated seafloor, lifting up
14:07:13 DEBUG opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
14:07:13 DEBUG opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
14:07:13 DEBUG opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
14:07:13 DEBUG opendrift.models.oceandrift:582: 100 elements penetrated seafloor, lifting up
14:07:13 DEBUG opendrift.models.oceandrift:600: 19 elements reached seafloor, set to bottom
14:07:13 DEBUG opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
14:07:13 DEBUG opendrift.models.sedimentdrift:112: Settling 19 elements at seafloor
14:07:13 DEBUG opendrift.models.oceandrift:582: 99 elements penetrated seafloor, lifting up
14:07:13 DEBUG opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
14:07:13 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
14:07:13 DEBUG opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
14:07:13 DEBUG opendrift.models.oceandrift:582: 90 elements penetrated seafloor, lifting up
14:07:13 DEBUG opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
14:07:13 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
14:07:13 DEBUG opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
14:07:13 DEBUG opendrift.models.oceandrift:582: 90 elements penetrated seafloor, lifting up
14:07:13 DEBUG opendrift.models.oceandrift:600: 20 elements reached seafloor, set to bottom
14:07:13 DEBUG opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
14:07:13 DEBUG opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
14:07:13 DEBUG opendrift.models.oceandrift:582: 91 elements penetrated seafloor, lifting up
14:07:13 DEBUG opendrift.models.oceandrift:600: 17 elements reached seafloor, set to bottom
14:07:13 DEBUG opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
14:07:13 DEBUG opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
14:07:13 DEBUG opendrift.models.oceandrift:582: 89 elements penetrated seafloor, lifting up
14:07:13 DEBUG opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
14:07:13 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
14:07:13 DEBUG opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
14:07:13 DEBUG opendrift.models.oceandrift:582: 71 elements penetrated seafloor, lifting up
14:07:13 DEBUG opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
14:07:13 DEBUG opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
14:07:13 DEBUG opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
14:07:13 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:13 DEBUG opendrift.models.basemodel:2945: 1667 active elements (0 deactivated)
14:07:13 DEBUG opendrift.models.basemodel:1658: to be seeded: 8333, already seeded 1667
14:07:13 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:07:13 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:13 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:13 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:13 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:13 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:13 DEBUG opendrift.models.basemodel:1253: Data needed for 1702 elements
14:07:13 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:13 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 22:00:00 (before)
2023-09-01 23:00:00 (after)
14:07:13 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 22:00:00) in space (linearNDFast)
14:07:13 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:13 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:13 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:13 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:13 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:13 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:13 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.7779 (max)
14:07:13 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:13 DEBUG opendrift.models.basemodel:1527: 1702 active elements
14:07:13 DEBUG opendrift.models.basemodel:1538: 59.11212180795806 <- latitude -> 59.17535596159249
14:07:13 DEBUG opendrift.models.basemodel:1543: 10.942915237629547 <- longitude -> 11.023904793617659
14:07:13 DEBUG opendrift.models.basemodel:1548: -13.823662986755371 <- z -> 0.0
14:07:13 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:13 DEBUG opendrift.models.basemodel:836: Lifting 129 elements to seafloor.
14:07:13 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:13 INFO opendrift.models.basemodel:2882: 2023-09-01 22:06:21.121579 - step 49 of 216 - 1702 active elements (0 deactivated)
14:07:13 DEBUG opendrift.models.basemodel:2888: 8298 elements scheduled.
14:07:13 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:13 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:13 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:13 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:13 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:13 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:13 DEBUG opendrift.models.basemodel:1253: Data needed for 1702 elements
14:07:13 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:13 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:13 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:13 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:13 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:13 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:13 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:13 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:13 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:13 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:13 DEBUG opendrift.models.basemodel:1253: Data needed for 1702 elements
14:07:13 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:13 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 22:00:00 (before)
2023-09-01 23:00:00 (after)
14:07:15 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:15 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:15 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:15 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:15 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:15 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:15 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 21x21x5) for time after (2023-09-01 23:00:00)
14:07:15 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 22:00:00) in space (linearNDFast)
14:07:15 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:15 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 23:00:00) in space (linearNDFast)
14:07:15 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 604 elements, expanding data 1
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 604 elements, expanding data 1
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 642 elements, expanding data 1
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 2
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 642 elements, expanding data 1
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 2
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 642 elements, expanding data 1
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 2
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 642 elements, expanding data 1
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 2
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 642 elements, expanding data 1
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 2
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1109 elements, expanding data 1
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 174 elements, expanding data 2
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1109 elements, expanding data 1
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 174 elements, expanding data 2
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1109 elements, expanding data 1
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 174 elements, expanding data 2
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1109 elements, expanding data 1
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 174 elements, expanding data 2
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1109 elements, expanding data 1
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 174 elements, expanding data 2
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 604 elements, expanding data 1
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 604 elements, expanding data 1
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 604 elements, expanding data 1
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 604 elements, expanding data 1
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 604 elements, expanding data 1
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:07:15 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 22:00:00, weight 0.89) and
after (2023-09-01 23:00:00, weight 0.11) in time
14:07:15 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05709532189268 and -58.97610575875984 degrees.
14:07:15 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05709532189268 and -58.97610575875984 degrees.
14:07:15 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:15 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:15 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:15 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:15 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:15 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:15 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.705213 (min) 1.21785 (max)
14:07:15 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.934557 (min) 0.608737 (max)
14:07:15 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000162351 (min) 0.000430675 (max)
14:07:15 DEBUG opendrift.models.basemodel:1524: x_wind: -7.0223 (min) 6.59044 (max)
14:07:15 DEBUG opendrift.models.basemodel:1524: y_wind: -6.91503 (min) 7.24341 (max)
14:07:15 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:15 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:15 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:15 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:15 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:15 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:15 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:15 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.7779 (max)
14:07:15 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:15 DEBUG opendrift.models.basemodel:1527: 1702 active elements
14:07:15 DEBUG opendrift.models.basemodel:1538: 59.11212180795806 <- latitude -> 59.17535596159249
14:07:15 DEBUG opendrift.models.basemodel:1543: 10.942915237629547 <- longitude -> 11.023904793617659
14:07:15 DEBUG opendrift.models.basemodel:1548: -13.823662986755371 <- z -> 0.0
14:07:15 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:15 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:15 DEBUG opendrift.models.physics_methods:1050: min: 0.084932, mean: 2.179508, max: 6.376571
14:07:15 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.084932, mean: 2.179508, max: 6.376571
14:07:15 DEBUG opendrift.models.basemodel:813: 131 elements hit coastline, moving back to water
14:07:15 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:07:15 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:15 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:15 DEBUG opendrift.models.physics_methods:828: Advecting 36 of 1702 elements above 0.100m with wind-sheared ocean current (0.000937 m/s - 0.125209 m/s)
14:07:15 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:15 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:15 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.050316683631019585
14:07:15 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:15 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:15 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:15 DEBUG opendrift.models.oceandrift:582: 157 elements penetrated seafloor, lifting up
14:07:15 DEBUG opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
14:07:15 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
14:07:15 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
14:07:15 DEBUG opendrift.models.oceandrift:582: 108 elements penetrated seafloor, lifting up
14:07:15 DEBUG opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
14:07:15 DEBUG opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
14:07:15 DEBUG opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
14:07:15 DEBUG opendrift.models.oceandrift:582: 98 elements penetrated seafloor, lifting up
14:07:15 DEBUG opendrift.models.oceandrift:600: 17 elements reached seafloor, set to bottom
14:07:15 DEBUG opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
14:07:15 DEBUG opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
14:07:15 DEBUG opendrift.models.oceandrift:582: 92 elements penetrated seafloor, lifting up
14:07:15 DEBUG opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
14:07:15 DEBUG opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
14:07:15 DEBUG opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
14:07:15 DEBUG opendrift.models.oceandrift:582: 74 elements penetrated seafloor, lifting up
14:07:15 DEBUG opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
14:07:15 DEBUG opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
14:07:15 DEBUG opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
14:07:15 DEBUG opendrift.models.oceandrift:582: 84 elements penetrated seafloor, lifting up
14:07:15 DEBUG opendrift.models.oceandrift:600: 17 elements reached seafloor, set to bottom
14:07:15 DEBUG opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
14:07:15 DEBUG opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
14:07:15 DEBUG opendrift.models.oceandrift:582: 93 elements penetrated seafloor, lifting up
14:07:15 DEBUG opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
14:07:15 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
14:07:15 DEBUG opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
14:07:15 DEBUG opendrift.models.oceandrift:582: 88 elements penetrated seafloor, lifting up
14:07:15 DEBUG opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
14:07:15 DEBUG opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
14:07:15 DEBUG opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
14:07:15 DEBUG opendrift.models.oceandrift:582: 87 elements penetrated seafloor, lifting up
14:07:15 DEBUG opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
14:07:15 DEBUG opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
14:07:15 DEBUG opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
14:07:15 DEBUG opendrift.models.oceandrift:582: 89 elements penetrated seafloor, lifting up
14:07:15 DEBUG opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
14:07:15 DEBUG opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
14:07:15 DEBUG opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
14:07:15 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:15 DEBUG opendrift.models.basemodel:2945: 1702 active elements (0 deactivated)
14:07:15 DEBUG opendrift.models.basemodel:1658: to be seeded: 8298, already seeded 1702
14:07:15 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:07:15 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:15 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:15 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:15 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:15 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:15 DEBUG opendrift.models.basemodel:1253: Data needed for 1736 elements
14:07:15 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:15 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 22:00:00 (before)
2023-09-01 23:00:00 (after)
14:07:15 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 22:00:00) in space (linearNDFast)
14:07:15 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:15 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:15 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:15 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:15 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:15 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:15 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.953 (max)
14:07:15 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:15 DEBUG opendrift.models.basemodel:1527: 1736 active elements
14:07:15 DEBUG opendrift.models.basemodel:1538: 59.109001715646244 <- latitude -> 59.17628815161673
14:07:15 DEBUG opendrift.models.basemodel:1543: 10.943548664400156 <- longitude -> 11.023953157828808
14:07:15 DEBUG opendrift.models.basemodel:1548: -13.823662986755371 <- z -> 0.0
14:07:15 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:15 DEBUG opendrift.models.basemodel:836: Lifting 118 elements to seafloor.
14:07:15 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:15 INFO opendrift.models.basemodel:2882: 2023-09-01 22:16:21.121579 - step 50 of 216 - 1736 active elements (0 deactivated)
14:07:15 DEBUG opendrift.models.basemodel:2888: 8264 elements scheduled.
14:07:15 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:15 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:15 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:15 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:15 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:15 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:15 DEBUG opendrift.models.basemodel:1253: Data needed for 1736 elements
14:07:15 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:15 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:15 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:15 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:15 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:15 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:15 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:15 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:15 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:15 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:15 DEBUG opendrift.models.basemodel:1253: Data needed for 1736 elements
14:07:15 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:15 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 22:00:00 (before)
2023-09-01 23:00:00 (after)
14:07:15 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:15 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:15 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:15 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:15 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:15 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:15 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 22x21x5) for time after (2023-09-01 23:00:00)
14:07:15 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 22:00:00) in space (linearNDFast)
14:07:15 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:15 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 23:00:00) in space (linearNDFast)
14:07:15 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 635 elements, expanding data 1
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 635 elements, expanding data 1
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 678 elements, expanding data 1
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 2
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 678 elements, expanding data 1
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 2
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 678 elements, expanding data 1
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 2
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 678 elements, expanding data 1
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 2
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 678 elements, expanding data 1
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 2
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1153 elements, expanding data 1
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 181 elements, expanding data 2
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1153 elements, expanding data 1
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 181 elements, expanding data 2
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1153 elements, expanding data 1
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 181 elements, expanding data 2
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1153 elements, expanding data 1
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 181 elements, expanding data 2
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1153 elements, expanding data 1
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 181 elements, expanding data 2
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 635 elements, expanding data 1
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 635 elements, expanding data 1
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 635 elements, expanding data 1
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 635 elements, expanding data 1
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 635 elements, expanding data 1
14:07:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:15 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 22:00:00, weight 0.73) and
after (2023-09-01 23:00:00, weight 0.27) in time
14:07:15 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05646189661221 and -58.976057388076796 degrees.
14:07:15 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05646189661221 and -58.976057388076796 degrees.
14:07:15 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:15 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:15 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:15 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:15 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:15 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:15 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.720329 (min) 1.19766 (max)
14:07:15 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.17854 (min) 0.635115 (max)
14:07:15 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000180242 (min) 0.000403493 (max)
14:07:15 DEBUG opendrift.models.basemodel:1524: x_wind: -8.82079 (min) 6.32428 (max)
14:07:15 DEBUG opendrift.models.basemodel:1524: y_wind: -6.79444 (min) 6.74369 (max)
14:07:15 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:15 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:15 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:15 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:15 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:15 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:15 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:15 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.953 (max)
14:07:15 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:15 DEBUG opendrift.models.basemodel:1527: 1736 active elements
14:07:15 DEBUG opendrift.models.basemodel:1538: 59.109001715646244 <- latitude -> 59.17628815161673
14:07:15 DEBUG opendrift.models.basemodel:1543: 10.943548664400156 <- longitude -> 11.023953157828808
14:07:15 DEBUG opendrift.models.basemodel:1548: -13.823662986755371 <- z -> 0.0
14:07:15 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:15 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:15 DEBUG opendrift.models.physics_methods:1050: min: 0.008764, mean: 2.244901, max: 7.896359
14:07:15 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.008764, mean: 2.244901, max: 7.896359
14:07:15 DEBUG opendrift.models.basemodel:813: 144 elements hit coastline, moving back to water
14:07:15 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:07:15 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:15 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:15 DEBUG opendrift.models.physics_methods:828: Advecting 34 of 1736 elements above 0.100m with wind-sheared ocean current (0.005115 m/s - 0.101068 m/s)
14:07:15 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:15 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:15 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07715766110189437
14:07:15 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:15 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:15 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:15 DEBUG opendrift.models.oceandrift:582: 168 elements penetrated seafloor, lifting up
14:07:15 DEBUG opendrift.models.oceandrift:600: 27 elements reached seafloor, set to bottom
14:07:15 DEBUG opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
14:07:15 DEBUG opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
14:07:15 DEBUG opendrift.models.oceandrift:582: 133 elements penetrated seafloor, lifting up
14:07:15 DEBUG opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
14:07:15 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
14:07:15 DEBUG opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
14:07:15 DEBUG opendrift.models.oceandrift:582: 112 elements penetrated seafloor, lifting up
14:07:15 DEBUG opendrift.models.oceandrift:600: 20 elements reached seafloor, set to bottom
14:07:15 DEBUG opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
14:07:15 DEBUG opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
14:07:15 DEBUG opendrift.models.oceandrift:582: 112 elements penetrated seafloor, lifting up
14:07:15 DEBUG opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
14:07:15 DEBUG opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
14:07:15 DEBUG opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
14:07:15 DEBUG opendrift.models.oceandrift:582: 112 elements penetrated seafloor, lifting up
14:07:15 DEBUG opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
14:07:15 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
14:07:15 DEBUG opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
14:07:15 DEBUG opendrift.models.oceandrift:582: 115 elements penetrated seafloor, lifting up
14:07:15 DEBUG opendrift.models.oceandrift:600: 23 elements reached seafloor, set to bottom
14:07:15 DEBUG opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
14:07:15 DEBUG opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
14:07:15 DEBUG opendrift.models.oceandrift:582: 98 elements penetrated seafloor, lifting up
14:07:15 DEBUG opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
14:07:15 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
14:07:15 DEBUG opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
14:07:15 DEBUG opendrift.models.oceandrift:582: 89 elements penetrated seafloor, lifting up
14:07:15 DEBUG opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
14:07:15 DEBUG opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
14:07:15 DEBUG opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
14:07:15 DEBUG opendrift.models.oceandrift:582: 89 elements penetrated seafloor, lifting up
14:07:15 DEBUG opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
14:07:15 DEBUG opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
14:07:15 DEBUG opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
14:07:15 DEBUG opendrift.models.oceandrift:582: 98 elements penetrated seafloor, lifting up
14:07:15 DEBUG opendrift.models.oceandrift:600: 20 elements reached seafloor, set to bottom
14:07:15 DEBUG opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
14:07:15 DEBUG opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
14:07:15 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:15 DEBUG opendrift.models.basemodel:2945: 1736 active elements (0 deactivated)
14:07:15 DEBUG opendrift.models.basemodel:1658: to be seeded: 8264, already seeded 1736
14:07:15 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:07:15 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:15 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:15 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:15 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:15 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:15 DEBUG opendrift.models.basemodel:1253: Data needed for 1771 elements
14:07:15 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:15 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 22:00:00 (before)
2023-09-01 23:00:00 (after)
14:07:15 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 22:00:00) in space (linearNDFast)
14:07:15 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:15 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:15 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:15 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:15 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:15 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:15 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.9795 (max)
14:07:15 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:15 DEBUG opendrift.models.basemodel:1527: 1771 active elements
14:07:15 DEBUG opendrift.models.basemodel:1538: 59.108100523005064 <- latitude -> 59.176919987354225
14:07:15 DEBUG opendrift.models.basemodel:1543: 10.943802061264085 <- longitude -> 11.025147915327342
14:07:15 DEBUG opendrift.models.basemodel:1548: -13.024991989135742 <- z -> 0.0
14:07:15 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:15 DEBUG opendrift.models.basemodel:836: Lifting 132 elements to seafloor.
14:07:15 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:15 INFO opendrift.models.basemodel:2882: 2023-09-01 22:26:21.121579 - step 51 of 216 - 1771 active elements (0 deactivated)
14:07:15 DEBUG opendrift.models.basemodel:2888: 8229 elements scheduled.
14:07:15 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:15 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:15 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:15 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:15 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:15 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:15 DEBUG opendrift.models.basemodel:1253: Data needed for 1771 elements
14:07:15 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:15 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:15 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:15 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:15 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:15 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:15 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:15 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:15 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:15 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:15 DEBUG opendrift.models.basemodel:1253: Data needed for 1771 elements
14:07:15 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:15 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 22:00:00 (before)
2023-09-01 23:00:00 (after)
14:07:16 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:16 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:16 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:16 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:16 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:16 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:16 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 23x21x5) for time after (2023-09-01 23:00:00)
14:07:16 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 22:00:00) in space (linearNDFast)
14:07:16 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:16 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 23:00:00) in space (linearNDFast)
14:07:16 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 659 elements, expanding data 1
14:07:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 659 elements, expanding data 1
14:07:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 705 elements, expanding data 1
14:07:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 2
14:07:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 705 elements, expanding data 1
14:07:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 2
14:07:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 705 elements, expanding data 1
14:07:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 2
14:07:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 705 elements, expanding data 1
14:07:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 2
14:07:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 705 elements, expanding data 1
14:07:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 2
14:07:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1167 elements, expanding data 1
14:07:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 192 elements, expanding data 2
14:07:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1167 elements, expanding data 1
14:07:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 192 elements, expanding data 2
14:07:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1167 elements, expanding data 1
14:07:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 192 elements, expanding data 2
14:07:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1167 elements, expanding data 1
14:07:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 192 elements, expanding data 2
14:07:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1167 elements, expanding data 1
14:07:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 192 elements, expanding data 2
14:07:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 659 elements, expanding data 1
14:07:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 659 elements, expanding data 1
14:07:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 659 elements, expanding data 1
14:07:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 659 elements, expanding data 1
14:07:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 659 elements, expanding data 1
14:07:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:16 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 22:00:00, weight 0.56) and
after (2023-09-01 23:00:00, weight 0.44) in time
14:07:16 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05620849206137 and -58.974862626723784 degrees.
14:07:16 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05620849206137 and -58.974862626723784 degrees.
14:07:16 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:16 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:16 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:16 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:16 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:16 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:16 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.684138 (min) 1.22289 (max)
14:07:16 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.889174 (min) 0.719006 (max)
14:07:16 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000134056 (min) 0.000492557 (max)
14:07:16 DEBUG opendrift.models.basemodel:1524: x_wind: -7.29626 (min) 5.62292 (max)
14:07:16 DEBUG opendrift.models.basemodel:1524: y_wind: -7.20882 (min) 6.09361 (max)
14:07:16 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:16 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:16 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:16 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:16 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:16 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:16 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:16 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.9795 (max)
14:07:16 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:16 DEBUG opendrift.models.basemodel:1527: 1771 active elements
14:07:16 DEBUG opendrift.models.basemodel:1538: 59.108100523005064 <- latitude -> 59.176919987354225
14:07:16 DEBUG opendrift.models.basemodel:1543: 10.943802061264085 <- longitude -> 11.025147915327342
14:07:16 DEBUG opendrift.models.basemodel:1548: -13.024991989135742 <- z -> 0.0
14:07:16 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:16 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:16 DEBUG opendrift.models.physics_methods:1050: min: 0.069396, mean: 2.204936, max: 8.321819
14:07:16 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.069396, mean: 2.204936, max: 8.321819
14:07:16 DEBUG opendrift.models.basemodel:813: 141 elements hit coastline, moving back to water
14:07:16 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
14:07:16 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:16 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:16 DEBUG opendrift.models.physics_methods:828: Advecting 35 of 1771 elements above 0.100m with wind-sheared ocean current (0.008225 m/s - 0.124408 m/s)
14:07:16 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:16 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:16 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08569581695611954
14:07:16 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:16 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:16 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:16 DEBUG opendrift.models.oceandrift:582: 169 elements penetrated seafloor, lifting up
14:07:16 DEBUG opendrift.models.oceandrift:600: 29 elements reached seafloor, set to bottom
14:07:16 DEBUG opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
14:07:16 DEBUG opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
14:07:16 DEBUG opendrift.models.oceandrift:582: 130 elements penetrated seafloor, lifting up
14:07:16 DEBUG opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
14:07:16 DEBUG opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
14:07:16 DEBUG opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
14:07:16 DEBUG opendrift.models.oceandrift:582: 118 elements penetrated seafloor, lifting up
14:07:16 DEBUG opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
14:07:16 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
14:07:16 DEBUG opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
14:07:16 DEBUG opendrift.models.oceandrift:582: 113 elements penetrated seafloor, lifting up
14:07:16 DEBUG opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
14:07:16 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
14:07:16 DEBUG opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
14:07:16 DEBUG opendrift.models.oceandrift:582: 80 elements penetrated seafloor, lifting up
14:07:16 DEBUG opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
14:07:16 DEBUG opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
14:07:16 DEBUG opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
14:07:16 DEBUG opendrift.models.oceandrift:582: 90 elements penetrated seafloor, lifting up
14:07:16 DEBUG opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
14:07:16 DEBUG opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
14:07:16 DEBUG opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
14:07:16 DEBUG opendrift.models.oceandrift:582: 94 elements penetrated seafloor, lifting up
14:07:16 DEBUG opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
14:07:16 DEBUG opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
14:07:16 DEBUG opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
14:07:16 DEBUG opendrift.models.oceandrift:582: 93 elements penetrated seafloor, lifting up
14:07:16 DEBUG opendrift.models.oceandrift:600: 23 elements reached seafloor, set to bottom
14:07:16 DEBUG opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
14:07:16 DEBUG opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
14:07:16 DEBUG opendrift.models.oceandrift:582: 105 elements penetrated seafloor, lifting up
14:07:16 DEBUG opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
14:07:16 DEBUG opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
14:07:16 DEBUG opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
14:07:16 DEBUG opendrift.models.oceandrift:582: 92 elements penetrated seafloor, lifting up
14:07:16 DEBUG opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
14:07:16 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
14:07:16 DEBUG opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
14:07:16 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:16 DEBUG opendrift.models.basemodel:2945: 1771 active elements (0 deactivated)
14:07:16 DEBUG opendrift.models.basemodel:1658: to be seeded: 8229, already seeded 1771
14:07:16 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:07:16 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:16 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:16 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:16 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:16 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:16 DEBUG opendrift.models.basemodel:1253: Data needed for 1806 elements
14:07:16 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:16 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 22:00:00 (before)
2023-09-01 23:00:00 (after)
14:07:16 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 22:00:00) in space (linearNDFast)
14:07:16 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:16 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:16 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:16 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:16 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:16 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:16 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.9391 (max)
14:07:16 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:16 DEBUG opendrift.models.basemodel:1527: 1806 active elements
14:07:16 DEBUG opendrift.models.basemodel:1538: 59.108512329699494 <- latitude -> 59.1769807449501
14:07:16 DEBUG opendrift.models.basemodel:1543: 10.944620065649822 <- longitude -> 11.024254066679285
14:07:16 DEBUG opendrift.models.basemodel:1548: -13.014991989135742 <- z -> 0.0
14:07:16 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:16 DEBUG opendrift.models.basemodel:836: Lifting 126 elements to seafloor.
14:07:16 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:16 INFO opendrift.models.basemodel:2882: 2023-09-01 22:36:21.121579 - step 52 of 216 - 1806 active elements (0 deactivated)
14:07:16 DEBUG opendrift.models.basemodel:2888: 8194 elements scheduled.
14:07:16 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:16 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:16 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:16 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:16 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:16 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:16 DEBUG opendrift.models.basemodel:1253: Data needed for 1806 elements
14:07:16 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:16 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:16 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:16 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:16 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:16 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:16 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:16 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:16 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:16 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:16 DEBUG opendrift.models.basemodel:1253: Data needed for 1806 elements
14:07:16 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:16 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 22:00:00 (before)
2023-09-01 23:00:00 (after)
14:07:17 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:17 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:17 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:17 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:17 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:17 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:17 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 23x21x5) for time after (2023-09-01 23:00:00)
14:07:17 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 22:00:00) in space (linearNDFast)
14:07:17 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:17 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 23:00:00) in space (linearNDFast)
14:07:17 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 681 elements, expanding data 1
14:07:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 681 elements, expanding data 1
14:07:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 720 elements, expanding data 1
14:07:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 2
14:07:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 720 elements, expanding data 1
14:07:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 2
14:07:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 720 elements, expanding data 1
14:07:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 2
14:07:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 720 elements, expanding data 1
14:07:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 2
14:07:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 720 elements, expanding data 1
14:07:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 2
14:07:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1195 elements, expanding data 1
14:07:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 201 elements, expanding data 2
14:07:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1195 elements, expanding data 1
14:07:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 201 elements, expanding data 2
14:07:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1195 elements, expanding data 1
14:07:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 201 elements, expanding data 2
14:07:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1195 elements, expanding data 1
14:07:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 201 elements, expanding data 2
14:07:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1195 elements, expanding data 1
14:07:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 201 elements, expanding data 2
14:07:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 681 elements, expanding data 1
14:07:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 681 elements, expanding data 1
14:07:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 681 elements, expanding data 1
14:07:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 681 elements, expanding data 1
14:07:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 681 elements, expanding data 1
14:07:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:17 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 22:00:00, weight 0.39) and
after (2023-09-01 23:00:00, weight 0.61) in time
14:07:17 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05539049357974 and -58.975756493778555 degrees.
14:07:17 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05539049357974 and -58.975756493778555 degrees.
14:07:17 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:17 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:17 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:17 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:17 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:17 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:17 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.711742 (min) 1.13549 (max)
14:07:17 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.36095 (min) 0.861178 (max)
14:07:17 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000131438 (min) 0.000508977 (max)
14:07:17 DEBUG opendrift.models.basemodel:1524: x_wind: -7.83175 (min) 7.10588 (max)
14:07:17 DEBUG opendrift.models.basemodel:1524: y_wind: -6.98401 (min) 5.65413 (max)
14:07:17 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:17 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:17 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:17 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:17 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:17 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:17 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:17 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.9391 (max)
14:07:17 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:17 DEBUG opendrift.models.basemodel:1527: 1806 active elements
14:07:17 DEBUG opendrift.models.basemodel:1538: 59.108512329699494 <- latitude -> 59.1769807449501
14:07:17 DEBUG opendrift.models.basemodel:1543: 10.944620065649822 <- longitude -> 11.024254066679285
14:07:17 DEBUG opendrift.models.basemodel:1548: -13.014991989135742 <- z -> 0.0
14:07:17 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:17 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:17 DEBUG opendrift.models.physics_methods:1050: min: 0.088402, mean: 2.280559, max: 7.046146
14:07:17 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.088402, mean: 2.280559, max: 7.046146
14:07:17 DEBUG opendrift.models.basemodel:813: 184 elements hit coastline, moving back to water
14:07:17 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
14:07:17 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:17 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:17 DEBUG opendrift.models.physics_methods:828: Advecting 35 of 1806 elements above 0.100m with wind-sheared ocean current (0.010882 m/s - 0.114728 m/s)
14:07:17 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:17 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:17 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.061437648359613406
14:07:17 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:17 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:17 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:17 DEBUG opendrift.models.oceandrift:582: 168 elements penetrated seafloor, lifting up
14:07:17 DEBUG opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
14:07:17 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
14:07:17 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
14:07:17 DEBUG opendrift.models.oceandrift:582: 115 elements penetrated seafloor, lifting up
14:07:17 DEBUG opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:07:17 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:17 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:07:17 DEBUG opendrift.models.oceandrift:582: 128 elements penetrated seafloor, lifting up
14:07:17 DEBUG opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
14:07:17 DEBUG opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
14:07:17 DEBUG opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
14:07:17 DEBUG opendrift.models.oceandrift:582: 108 elements penetrated seafloor, lifting up
14:07:17 DEBUG opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
14:07:17 DEBUG opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
14:07:17 DEBUG opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
14:07:17 DEBUG opendrift.models.oceandrift:582: 111 elements penetrated seafloor, lifting up
14:07:17 DEBUG opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
14:07:17 DEBUG opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
14:07:17 DEBUG opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
14:07:17 DEBUG opendrift.models.oceandrift:582: 94 elements penetrated seafloor, lifting up
14:07:17 DEBUG opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
14:07:17 DEBUG opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
14:07:17 DEBUG opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
14:07:17 DEBUG opendrift.models.oceandrift:582: 83 elements penetrated seafloor, lifting up
14:07:17 DEBUG opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
14:07:17 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
14:07:17 DEBUG opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
14:07:17 DEBUG opendrift.models.oceandrift:582: 103 elements penetrated seafloor, lifting up
14:07:17 DEBUG opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
14:07:17 DEBUG opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
14:07:17 DEBUG opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
14:07:17 DEBUG opendrift.models.oceandrift:582: 108 elements penetrated seafloor, lifting up
14:07:17 DEBUG opendrift.models.oceandrift:600: 20 elements reached seafloor, set to bottom
14:07:17 DEBUG opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
14:07:17 DEBUG opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
14:07:17 DEBUG opendrift.models.oceandrift:582: 81 elements penetrated seafloor, lifting up
14:07:17 DEBUG opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
14:07:17 DEBUG opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
14:07:17 DEBUG opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
14:07:17 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:17 DEBUG opendrift.models.basemodel:2945: 1806 active elements (0 deactivated)
14:07:17 DEBUG opendrift.models.basemodel:1658: to be seeded: 8194, already seeded 1806
14:07:17 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:07:17 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:17 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:17 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:17 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:17 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:17 DEBUG opendrift.models.basemodel:1253: Data needed for 1841 elements
14:07:17 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:17 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 22:00:00 (before)
2023-09-01 23:00:00 (after)
14:07:17 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 22:00:00) in space (linearNDFast)
14:07:17 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:17 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:17 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:17 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:17 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:17 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:17 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.9367 (max)
14:07:17 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:17 DEBUG opendrift.models.basemodel:1527: 1841 active elements
14:07:17 DEBUG opendrift.models.basemodel:1538: 59.10747422784597 <- latitude -> 59.177967586384625
14:07:17 DEBUG opendrift.models.basemodel:1543: 10.943832828736017 <- longitude -> 11.024805818218354
14:07:17 DEBUG opendrift.models.basemodel:1548: -13.128026666541198 <- z -> 0.0
14:07:17 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:17 DEBUG opendrift.models.basemodel:836: Lifting 133 elements to seafloor.
14:07:17 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:17 INFO opendrift.models.basemodel:2882: 2023-09-01 22:46:21.121579 - step 53 of 216 - 1841 active elements (0 deactivated)
14:07:17 DEBUG opendrift.models.basemodel:2888: 8159 elements scheduled.
14:07:17 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:17 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:17 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:17 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:17 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:17 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:17 DEBUG opendrift.models.basemodel:1253: Data needed for 1841 elements
14:07:17 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:17 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:17 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:17 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:17 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:17 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:17 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:17 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:17 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:17 DEBUG opendrift.models.basemodel:1253: Data needed for 1841 elements
14:07:17 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:17 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 22:00:00 (before)
2023-09-01 23:00:00 (after)
14:07:18 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:18 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:18 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:18 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:18 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:18 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:18 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 23x21x5) for time after (2023-09-01 23:00:00)
14:07:18 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 22:00:00) in space (linearNDFast)
14:07:18 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:18 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 23:00:00) in space (linearNDFast)
14:07:18 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 710 elements, expanding data 1
14:07:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 710 elements, expanding data 1
14:07:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 746 elements, expanding data 1
14:07:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 2
14:07:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 746 elements, expanding data 1
14:07:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 2
14:07:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 746 elements, expanding data 1
14:07:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 2
14:07:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 746 elements, expanding data 1
14:07:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 2
14:07:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 746 elements, expanding data 1
14:07:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 2
14:07:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1260 elements, expanding data 1
14:07:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 216 elements, expanding data 2
14:07:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1260 elements, expanding data 1
14:07:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 216 elements, expanding data 2
14:07:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1260 elements, expanding data 1
14:07:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 216 elements, expanding data 2
14:07:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1260 elements, expanding data 1
14:07:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 216 elements, expanding data 2
14:07:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1260 elements, expanding data 1
14:07:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 216 elements, expanding data 2
14:07:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 710 elements, expanding data 1
14:07:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 710 elements, expanding data 1
14:07:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 710 elements, expanding data 1
14:07:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 710 elements, expanding data 1
14:07:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 710 elements, expanding data 1
14:07:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:18 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 22:00:00, weight 0.23) and
after (2023-09-01 23:00:00, weight 0.77) in time
14:07:18 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05617773676772 and -58.97520472989006 degrees.
14:07:18 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05617773676772 and -58.97520472989006 degrees.
14:07:18 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:18 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:18 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:18 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:18 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:18 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:18 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.628679 (min) 1.17463 (max)
14:07:18 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.923974 (min) 0.724064 (max)
14:07:18 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000120956 (min) 0.000749739 (max)
14:07:18 DEBUG opendrift.models.basemodel:1524: x_wind: -6.66973 (min) 6.03738 (max)
14:07:18 DEBUG opendrift.models.basemodel:1524: y_wind: -7.47149 (min) 5.67858 (max)
14:07:18 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:18 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:18 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:18 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:18 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:18 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:18 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:18 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.9367 (max)
14:07:18 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:18 DEBUG opendrift.models.basemodel:1527: 1841 active elements
14:07:18 DEBUG opendrift.models.basemodel:1538: 59.10747422784597 <- latitude -> 59.177967586384625
14:07:18 DEBUG opendrift.models.basemodel:1543: 10.943832828736017 <- longitude -> 11.024805818218354
14:07:18 DEBUG opendrift.models.basemodel:1548: -13.128026666541198 <- z -> 0.0
14:07:18 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:18 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:18 DEBUG opendrift.models.physics_methods:1050: min: 0.043784, mean: 2.328238, max: 7.186990
14:07:18 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.043784, mean: 2.328238, max: 7.186990
14:07:18 DEBUG opendrift.models.basemodel:813: 162 elements hit coastline, moving back to water
14:07:18 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
14:07:18 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:18 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:18 DEBUG opendrift.models.physics_methods:828: Advecting 35 of 1841 elements above 0.100m with wind-sheared ocean current (0.010600 m/s - 0.138241 m/s)
14:07:18 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:18 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:18 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.06391812669427871
14:07:18 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:18 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:18 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:18 DEBUG opendrift.models.oceandrift:582: 176 elements penetrated seafloor, lifting up
14:07:18 DEBUG opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
14:07:18 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
14:07:18 DEBUG opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
14:07:18 DEBUG opendrift.models.oceandrift:582: 125 elements penetrated seafloor, lifting up
14:07:18 DEBUG opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
14:07:18 DEBUG opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
14:07:18 DEBUG opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
14:07:18 DEBUG opendrift.models.oceandrift:582: 113 elements penetrated seafloor, lifting up
14:07:18 DEBUG opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
14:07:18 DEBUG opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
14:07:18 DEBUG opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
14:07:18 DEBUG opendrift.models.oceandrift:582: 123 elements penetrated seafloor, lifting up
14:07:18 DEBUG opendrift.models.oceandrift:600: 23 elements reached seafloor, set to bottom
14:07:18 DEBUG opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
14:07:18 DEBUG opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
14:07:18 DEBUG opendrift.models.oceandrift:582: 125 elements penetrated seafloor, lifting up
14:07:18 DEBUG opendrift.models.oceandrift:600: 20 elements reached seafloor, set to bottom
14:07:18 DEBUG opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
14:07:18 DEBUG opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
14:07:18 DEBUG opendrift.models.oceandrift:582: 91 elements penetrated seafloor, lifting up
14:07:18 DEBUG opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
14:07:18 DEBUG opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
14:07:18 DEBUG opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
14:07:18 DEBUG opendrift.models.oceandrift:582: 119 elements penetrated seafloor, lifting up
14:07:18 DEBUG opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
14:07:18 DEBUG opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
14:07:18 DEBUG opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
14:07:18 DEBUG opendrift.models.oceandrift:582: 103 elements penetrated seafloor, lifting up
14:07:18 DEBUG opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
14:07:18 DEBUG opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
14:07:18 DEBUG opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
14:07:18 DEBUG opendrift.models.oceandrift:582: 88 elements penetrated seafloor, lifting up
14:07:18 DEBUG opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
14:07:18 DEBUG opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
14:07:18 DEBUG opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
14:07:18 DEBUG opendrift.models.oceandrift:582: 113 elements penetrated seafloor, lifting up
14:07:18 DEBUG opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
14:07:18 DEBUG opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
14:07:18 DEBUG opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
14:07:18 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:18 DEBUG opendrift.models.basemodel:2945: 1841 active elements (0 deactivated)
14:07:18 DEBUG opendrift.models.basemodel:1658: to be seeded: 8159, already seeded 1841
14:07:18 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:07:18 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:18 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:18 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:18 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:18 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:18 DEBUG opendrift.models.basemodel:1253: Data needed for 1875 elements
14:07:18 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:18 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 22:00:00 (before)
2023-09-01 23:00:00 (after)
14:07:18 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 22:00:00) in space (linearNDFast)
14:07:18 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:18 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:18 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:18 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:18 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:18 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:18 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.972 (max)
14:07:18 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:18 DEBUG opendrift.models.basemodel:1527: 1875 active elements
14:07:18 DEBUG opendrift.models.basemodel:1538: 59.10519446449114 <- latitude -> 59.18000708276578
14:07:18 DEBUG opendrift.models.basemodel:1543: 10.94258369853095 <- longitude -> 11.027167932265584
14:07:18 DEBUG opendrift.models.basemodel:1548: -13.279479254877963 <- z -> 0.0
14:07:18 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:18 DEBUG opendrift.models.basemodel:836: Lifting 126 elements to seafloor.
14:07:18 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:18 INFO opendrift.models.basemodel:2882: 2023-09-01 22:56:21.121579 - step 54 of 216 - 1875 active elements (0 deactivated)
14:07:18 DEBUG opendrift.models.basemodel:2888: 8125 elements scheduled.
14:07:18 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:18 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:18 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:18 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:18 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:18 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:18 DEBUG opendrift.models.basemodel:1253: Data needed for 1875 elements
14:07:18 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:18 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:18 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:18 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:18 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:18 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:18 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:18 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:18 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:18 DEBUG opendrift.models.basemodel:1253: Data needed for 1875 elements
14:07:18 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:18 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 22:00:00 (before)
2023-09-01 23:00:00 (after)
14:07:19 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:19 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:19 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:19 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:19 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:19 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:19 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 23x22x5) for time after (2023-09-01 23:00:00)
14:07:19 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 22:00:00) in space (linearNDFast)
14:07:19 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:19 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 23:00:00) in space (linearNDFast)
14:07:19 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 742 elements, expanding data 1
14:07:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 742 elements, expanding data 1
14:07:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 789 elements, expanding data 1
14:07:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 2
14:07:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 789 elements, expanding data 1
14:07:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 2
14:07:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 789 elements, expanding data 1
14:07:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 2
14:07:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 789 elements, expanding data 1
14:07:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 2
14:07:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 789 elements, expanding data 1
14:07:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 2
14:07:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1297 elements, expanding data 1
14:07:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 232 elements, expanding data 2
14:07:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1297 elements, expanding data 1
14:07:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 232 elements, expanding data 2
14:07:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1297 elements, expanding data 1
14:07:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 232 elements, expanding data 2
14:07:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1297 elements, expanding data 1
14:07:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 232 elements, expanding data 2
14:07:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1297 elements, expanding data 1
14:07:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 232 elements, expanding data 2
14:07:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 742 elements, expanding data 1
14:07:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 742 elements, expanding data 1
14:07:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 742 elements, expanding data 1
14:07:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 742 elements, expanding data 1
14:07:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 742 elements, expanding data 1
14:07:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:19 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 22:00:00, weight 0.06) and
after (2023-09-01 23:00:00, weight 0.94) in time
14:07:19 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.057426848069085 and -58.97284261624829 degrees.
14:07:19 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.057426848069085 and -58.97284261624829 degrees.
14:07:19 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:19 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:19 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:19 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:19 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:19 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:19 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.767519 (min) 1.24203 (max)
14:07:19 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.912936 (min) 0.756341 (max)
14:07:19 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000148816 (min) 0.000454051 (max)
14:07:19 DEBUG opendrift.models.basemodel:1524: x_wind: -7.73342 (min) 5.26991 (max)
14:07:19 DEBUG opendrift.models.basemodel:1524: y_wind: -7.87628 (min) 6.79835 (max)
14:07:19 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:19 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:19 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:19 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:19 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:19 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:19 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:19 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.972 (max)
14:07:19 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:19 DEBUG opendrift.models.basemodel:1527: 1875 active elements
14:07:19 DEBUG opendrift.models.basemodel:1538: 59.10519446449114 <- latitude -> 59.18000708276578
14:07:19 DEBUG opendrift.models.basemodel:1543: 10.94258369853095 <- longitude -> 11.027167932265584
14:07:19 DEBUG opendrift.models.basemodel:1548: -13.279479254877963 <- z -> 0.0
14:07:19 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:19 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:19 DEBUG opendrift.models.physics_methods:1050: min: 0.064377, mean: 2.402334, max: 7.426918
14:07:19 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.064377, mean: 2.402334, max: 7.426918
14:07:19 DEBUG opendrift.models.basemodel:813: 168 elements hit coastline, moving back to water
14:07:19 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:07:19 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:19 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:19 DEBUG opendrift.models.physics_methods:828: Advecting 34 of 1875 elements above 0.100m with wind-sheared ocean current (0.006536 m/s - 0.108911 m/s)
14:07:19 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:19 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:19 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.06825674913414001
14:07:19 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:19 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:19 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:19 DEBUG opendrift.models.oceandrift:582: 201 elements penetrated seafloor, lifting up
14:07:19 DEBUG opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
14:07:19 DEBUG opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
14:07:19 DEBUG opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
14:07:19 DEBUG opendrift.models.oceandrift:582: 139 elements penetrated seafloor, lifting up
14:07:19 DEBUG opendrift.models.oceandrift:600: 20 elements reached seafloor, set to bottom
14:07:19 DEBUG opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
14:07:19 DEBUG opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
14:07:19 DEBUG opendrift.models.oceandrift:582: 121 elements penetrated seafloor, lifting up
14:07:19 DEBUG opendrift.models.oceandrift:600: 20 elements reached seafloor, set to bottom
14:07:19 DEBUG opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
14:07:19 DEBUG opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
14:07:19 DEBUG opendrift.models.oceandrift:582: 126 elements penetrated seafloor, lifting up
14:07:19 DEBUG opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
14:07:19 DEBUG opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
14:07:19 DEBUG opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
14:07:19 DEBUG opendrift.models.oceandrift:582: 122 elements penetrated seafloor, lifting up
14:07:19 DEBUG opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
14:07:19 DEBUG opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
14:07:19 DEBUG opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
14:07:19 DEBUG opendrift.models.oceandrift:582: 109 elements penetrated seafloor, lifting up
14:07:19 DEBUG opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
14:07:19 DEBUG opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
14:07:19 DEBUG opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
14:07:19 DEBUG opendrift.models.oceandrift:582: 117 elements penetrated seafloor, lifting up
14:07:19 DEBUG opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
14:07:19 DEBUG opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
14:07:19 DEBUG opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
14:07:19 DEBUG opendrift.models.oceandrift:582: 100 elements penetrated seafloor, lifting up
14:07:19 DEBUG opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
14:07:19 DEBUG opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
14:07:19 DEBUG opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
14:07:19 DEBUG opendrift.models.oceandrift:582: 104 elements penetrated seafloor, lifting up
14:07:19 DEBUG opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
14:07:19 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
14:07:19 DEBUG opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
14:07:19 DEBUG opendrift.models.oceandrift:582: 82 elements penetrated seafloor, lifting up
14:07:19 DEBUG opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
14:07:19 DEBUG opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
14:07:19 DEBUG opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
14:07:19 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:19 DEBUG opendrift.models.basemodel:2945: 1875 active elements (0 deactivated)
14:07:19 DEBUG opendrift.models.basemodel:1658: to be seeded: 8125, already seeded 1875
14:07:19 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:07:19 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:19 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:19 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:19 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:19 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:19 DEBUG opendrift.models.basemodel:1253: Data needed for 1910 elements
14:07:19 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:19 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 23:00:00 (before)
2023-09-02 00:00:00 (after)
14:07:19 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 23:00:00) in space (linearNDFast)
14:07:19 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:19 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:19 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:19 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:19 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:19 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:19 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.01518 (min) 15.0435 (max)
14:07:19 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:19 DEBUG opendrift.models.basemodel:1527: 1910 active elements
14:07:19 DEBUG opendrift.models.basemodel:1538: 59.104841953374354 <- latitude -> 59.18011704088889
14:07:19 DEBUG opendrift.models.basemodel:1543: 10.94405426366724 <- longitude -> 11.025188046129314
14:07:19 DEBUG opendrift.models.basemodel:1548: -13.280652330094496 <- z -> 0.0
14:07:19 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:19 DEBUG opendrift.models.basemodel:836: Lifting 139 elements to seafloor.
14:07:19 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:19 INFO opendrift.models.basemodel:2882: 2023-09-01 23:06:21.121579 - step 55 of 216 - 1910 active elements (0 deactivated)
14:07:19 DEBUG opendrift.models.basemodel:2888: 8090 elements scheduled.
14:07:19 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:19 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:19 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:19 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:19 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:19 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:19 DEBUG opendrift.models.basemodel:1253: Data needed for 1910 elements
14:07:19 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:19 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:19 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:19 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:19 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:19 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:19 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:19 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:19 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:19 DEBUG opendrift.models.basemodel:1253: Data needed for 1910 elements
14:07:19 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:19 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 23:00:00 (before)
2023-09-02 00:00:00 (after)
14:07:20 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:20 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:20 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:20 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:20 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:20 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:20 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 23x21x5) for time after (2023-09-02 00:00:00)
14:07:20 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 23:00:00) in space (linearNDFast)
14:07:20 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:20 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 00:00:00) in space (linearNDFast)
14:07:20 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 748 elements, expanding data 1
14:07:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 748 elements, expanding data 1
14:07:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 788 elements, expanding data 1
14:07:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 2
14:07:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 788 elements, expanding data 1
14:07:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 2
14:07:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 788 elements, expanding data 1
14:07:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 2
14:07:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 788 elements, expanding data 1
14:07:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 2
14:07:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 788 elements, expanding data 1
14:07:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 2
14:07:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1343 elements, expanding data 1
14:07:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 242 elements, expanding data 2
14:07:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1343 elements, expanding data 1
14:07:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 242 elements, expanding data 2
14:07:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1343 elements, expanding data 1
14:07:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 242 elements, expanding data 2
14:07:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1343 elements, expanding data 1
14:07:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 242 elements, expanding data 2
14:07:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1343 elements, expanding data 1
14:07:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 242 elements, expanding data 2
14:07:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 748 elements, expanding data 1
14:07:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 748 elements, expanding data 1
14:07:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 748 elements, expanding data 1
14:07:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 748 elements, expanding data 1
14:07:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 748 elements, expanding data 1
14:07:20 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 23:00:00, weight 0.89) and
after (2023-09-02 00:00:00, weight 0.11) in time
14:07:20 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.055956293246 and -58.97482250320678 degrees.
14:07:20 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.055956293246 and -58.97482250320678 degrees.
14:07:20 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:20 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:20 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:20 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:20 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:20 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:20 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.647244 (min) 1.15407 (max)
14:07:20 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.03287 (min) 0.762082 (max)
14:07:20 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000147146 (min) 0.000410039 (max)
14:07:20 DEBUG opendrift.models.basemodel:1524: x_wind: -8.47373 (min) 5.5799 (max)
14:07:20 DEBUG opendrift.models.basemodel:1524: y_wind: -7.48054 (min) 6.3171 (max)
14:07:20 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:20 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:20 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:20 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:20 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:20 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:20 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:20 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.01518 (min) 15.0435 (max)
14:07:20 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:20 DEBUG opendrift.models.basemodel:1527: 1910 active elements
14:07:20 DEBUG opendrift.models.basemodel:1538: 59.104841953374354 <- latitude -> 59.18011704088889
14:07:20 DEBUG opendrift.models.basemodel:1543: 10.94405426366724 <- longitude -> 11.025188046129314
14:07:20 DEBUG opendrift.models.basemodel:1548: -13.280652330094496 <- z -> 0.0
14:07:20 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:20 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:20 DEBUG opendrift.models.physics_methods:1050: min: 0.069509, mean: 2.432903, max: 7.247873
14:07:20 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.069509, mean: 2.432903, max: 7.247873
14:07:20 DEBUG opendrift.models.basemodel:813: 180 elements hit coastline, moving back to water
14:07:20 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:07:20 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:20 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:20 DEBUG opendrift.models.physics_methods:828: Advecting 35 of 1910 elements above 0.100m with wind-sheared ocean current (0.011428 m/s - 0.110483 m/s)
14:07:20 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:20 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:20 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.06500559612925529
14:07:20 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:20 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:20 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:20 DEBUG opendrift.models.oceandrift:582: 199 elements penetrated seafloor, lifting up
14:07:20 DEBUG opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
14:07:20 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
14:07:20 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
14:07:20 DEBUG opendrift.models.oceandrift:582: 158 elements penetrated seafloor, lifting up
14:07:20 DEBUG opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
14:07:20 DEBUG opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
14:07:20 DEBUG opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
14:07:20 DEBUG opendrift.models.oceandrift:582: 145 elements penetrated seafloor, lifting up
14:07:20 DEBUG opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
14:07:20 DEBUG opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
14:07:20 DEBUG opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
14:07:20 DEBUG opendrift.models.oceandrift:582: 119 elements penetrated seafloor, lifting up
14:07:20 DEBUG opendrift.models.oceandrift:600: 27 elements reached seafloor, set to bottom
14:07:20 DEBUG opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
14:07:20 DEBUG opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
14:07:20 DEBUG opendrift.models.oceandrift:582: 100 elements penetrated seafloor, lifting up
14:07:20 DEBUG opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
14:07:20 DEBUG opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
14:07:20 DEBUG opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
14:07:20 DEBUG opendrift.models.oceandrift:582: 96 elements penetrated seafloor, lifting up
14:07:20 DEBUG opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
14:07:20 DEBUG opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
14:07:20 DEBUG opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
14:07:20 DEBUG opendrift.models.oceandrift:582: 120 elements penetrated seafloor, lifting up
14:07:20 DEBUG opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
14:07:20 DEBUG opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
14:07:20 DEBUG opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
14:07:20 DEBUG opendrift.models.oceandrift:582: 119 elements penetrated seafloor, lifting up
14:07:20 DEBUG opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
14:07:20 DEBUG opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
14:07:20 DEBUG opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
14:07:20 DEBUG opendrift.models.oceandrift:582: 100 elements penetrated seafloor, lifting up
14:07:20 DEBUG opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
14:07:20 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
14:07:20 DEBUG opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
14:07:20 DEBUG opendrift.models.oceandrift:582: 74 elements penetrated seafloor, lifting up
14:07:20 DEBUG opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
14:07:20 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
14:07:20 DEBUG opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
14:07:20 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:20 DEBUG opendrift.models.basemodel:2945: 1910 active elements (0 deactivated)
14:07:20 DEBUG opendrift.models.basemodel:1658: to be seeded: 8090, already seeded 1910
14:07:20 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:07:20 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:20 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:20 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:20 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:20 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:20 DEBUG opendrift.models.basemodel:1253: Data needed for 1945 elements
14:07:20 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:20 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 23:00:00 (before)
2023-09-02 00:00:00 (after)
14:07:20 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 23:00:00) in space (linearNDFast)
14:07:20 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:20 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:20 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:20 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:20 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:20 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:20 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.1728 (max)
14:07:20 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:20 DEBUG opendrift.models.basemodel:1527: 1945 active elements
14:07:20 DEBUG opendrift.models.basemodel:1538: 59.10275522043577 <- latitude -> 59.18001630044418
14:07:20 DEBUG opendrift.models.basemodel:1543: 10.942958806672607 <- longitude -> 11.026002581076336
14:07:20 DEBUG opendrift.models.basemodel:1548: -13.505836486816406 <- z -> 0.0
14:07:20 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:20 DEBUG opendrift.models.basemodel:836: Lifting 139 elements to seafloor.
14:07:20 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:20 INFO opendrift.models.basemodel:2882: 2023-09-01 23:16:21.121579 - step 56 of 216 - 1945 active elements (0 deactivated)
14:07:20 DEBUG opendrift.models.basemodel:2888: 8055 elements scheduled.
14:07:20 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:20 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:20 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:20 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:20 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:20 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:20 DEBUG opendrift.models.basemodel:1253: Data needed for 1945 elements
14:07:20 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:20 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:20 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:20 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:20 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:20 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:20 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:20 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:20 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:20 DEBUG opendrift.models.basemodel:1253: Data needed for 1945 elements
14:07:20 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:20 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 23:00:00 (before)
2023-09-02 00:00:00 (after)
14:07:21 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:21 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:21 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:21 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:21 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:21 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:21 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 23x21x5) for time after (2023-09-02 00:00:00)
14:07:21 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 23:00:00) in space (linearNDFast)
14:07:21 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:21 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 00:00:00) in space (linearNDFast)
14:07:21 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 758 elements, expanding data 1
14:07:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:07:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 758 elements, expanding data 1
14:07:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:07:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 801 elements, expanding data 1
14:07:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 2
14:07:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 801 elements, expanding data 1
14:07:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 2
14:07:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 801 elements, expanding data 1
14:07:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 2
14:07:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 801 elements, expanding data 1
14:07:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 2
14:07:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 801 elements, expanding data 1
14:07:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 2
14:07:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1354 elements, expanding data 1
14:07:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 260 elements, expanding data 2
14:07:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1354 elements, expanding data 1
14:07:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 260 elements, expanding data 2
14:07:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1354 elements, expanding data 1
14:07:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 260 elements, expanding data 2
14:07:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1354 elements, expanding data 1
14:07:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 260 elements, expanding data 2
14:07:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1354 elements, expanding data 1
14:07:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 260 elements, expanding data 2
14:07:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 758 elements, expanding data 1
14:07:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:07:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 758 elements, expanding data 1
14:07:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:07:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 758 elements, expanding data 1
14:07:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:07:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 758 elements, expanding data 1
14:07:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:07:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 758 elements, expanding data 1
14:07:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:07:21 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 23:00:00, weight 0.73) and
after (2023-09-02 00:00:00, weight 0.27) in time
14:07:21 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.0570517620394 and -58.9740079620734 degrees.
14:07:21 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.0570517620394 and -58.9740079620734 degrees.
14:07:21 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:21 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:21 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:21 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:21 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:21 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:21 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.645899 (min) 1.07299 (max)
14:07:21 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.985014 (min) 0.718979 (max)
14:07:21 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000125252 (min) 0.000573704 (max)
14:07:21 DEBUG opendrift.models.basemodel:1524: x_wind: -7.47931 (min) 5.67547 (max)
14:07:21 DEBUG opendrift.models.basemodel:1524: y_wind: -7.69486 (min) 7.08704 (max)
14:07:21 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:21 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:21 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:21 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:21 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:21 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:21 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:21 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.1728 (max)
14:07:21 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:21 DEBUG opendrift.models.basemodel:1527: 1945 active elements
14:07:21 DEBUG opendrift.models.basemodel:1538: 59.10275522043577 <- latitude -> 59.18001630044418
14:07:21 DEBUG opendrift.models.basemodel:1543: 10.942958806672607 <- longitude -> 11.026002581076336
14:07:21 DEBUG opendrift.models.basemodel:1548: -13.505836486816406 <- z -> 0.0
14:07:21 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:21 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:21 DEBUG opendrift.models.physics_methods:1050: min: 0.020195, mean: 2.437901, max: 7.196733
14:07:21 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.020195, mean: 2.437901, max: 7.196733
14:07:21 DEBUG opendrift.models.basemodel:813: 185 elements hit coastline, moving back to water
14:07:21 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:07:21 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:21 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:21 DEBUG opendrift.models.physics_methods:828: Advecting 36 of 1945 elements above 0.100m with wind-sheared ocean current (0.001394 m/s - 0.121279 m/s)
14:07:21 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:21 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:21 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.06409154659183502
14:07:21 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:21 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:21 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:21 DEBUG opendrift.models.oceandrift:582: 167 elements penetrated seafloor, lifting up
14:07:21 DEBUG opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
14:07:21 DEBUG opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
14:07:21 DEBUG opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
14:07:21 DEBUG opendrift.models.oceandrift:582: 159 elements penetrated seafloor, lifting up
14:07:21 DEBUG opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
14:07:21 DEBUG opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
14:07:21 DEBUG opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
14:07:21 DEBUG opendrift.models.oceandrift:582: 142 elements penetrated seafloor, lifting up
14:07:21 DEBUG opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
14:07:21 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
14:07:21 DEBUG opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
14:07:21 DEBUG opendrift.models.oceandrift:582: 130 elements penetrated seafloor, lifting up
14:07:21 DEBUG opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:07:21 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:21 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:07:21 DEBUG opendrift.models.oceandrift:582: 124 elements penetrated seafloor, lifting up
14:07:21 DEBUG opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
14:07:21 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
14:07:21 DEBUG opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
14:07:21 DEBUG opendrift.models.oceandrift:582: 122 elements penetrated seafloor, lifting up
14:07:21 DEBUG opendrift.models.oceandrift:600: 20 elements reached seafloor, set to bottom
14:07:21 DEBUG opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
14:07:21 DEBUG opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
14:07:21 DEBUG opendrift.models.oceandrift:582: 128 elements penetrated seafloor, lifting up
14:07:21 DEBUG opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
14:07:21 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
14:07:21 DEBUG opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
14:07:21 DEBUG opendrift.models.oceandrift:582: 120 elements penetrated seafloor, lifting up
14:07:21 DEBUG opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
14:07:21 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
14:07:21 DEBUG opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
14:07:21 DEBUG opendrift.models.oceandrift:582: 108 elements penetrated seafloor, lifting up
14:07:21 DEBUG opendrift.models.oceandrift:600: 23 elements reached seafloor, set to bottom
14:07:21 DEBUG opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
14:07:21 DEBUG opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
14:07:21 DEBUG opendrift.models.oceandrift:582: 92 elements penetrated seafloor, lifting up
14:07:21 DEBUG opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
14:07:21 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
14:07:21 DEBUG opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
14:07:21 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:21 DEBUG opendrift.models.basemodel:2945: 1945 active elements (0 deactivated)
14:07:21 DEBUG opendrift.models.basemodel:1658: to be seeded: 8055, already seeded 1945
14:07:21 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:07:21 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:21 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:21 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:21 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:21 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:21 DEBUG opendrift.models.basemodel:1253: Data needed for 1979 elements
14:07:21 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:21 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 23:00:00 (before)
2023-09-02 00:00:00 (after)
14:07:21 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 23:00:00) in space (linearNDFast)
14:07:21 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:21 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:21 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:21 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:21 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:21 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:21 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.0303 (max)
14:07:21 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:21 DEBUG opendrift.models.basemodel:1527: 1979 active elements
14:07:21 DEBUG opendrift.models.basemodel:1538: 59.102717720927004 <- latitude -> 59.180603454146144
14:07:21 DEBUG opendrift.models.basemodel:1543: 10.944092650913188 <- longitude -> 11.024662069655822
14:07:21 DEBUG opendrift.models.basemodel:1548: -13.74526607141615 <- z -> 0.0
14:07:21 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:21 DEBUG opendrift.models.basemodel:836: Lifting 132 elements to seafloor.
14:07:21 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:21 INFO opendrift.models.basemodel:2882: 2023-09-01 23:26:21.121579 - step 57 of 216 - 1979 active elements (0 deactivated)
14:07:21 DEBUG opendrift.models.basemodel:2888: 8021 elements scheduled.
14:07:21 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:21 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:21 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:21 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:21 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:21 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:21 DEBUG opendrift.models.basemodel:1253: Data needed for 1979 elements
14:07:21 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:21 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:21 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:21 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:21 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:21 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:21 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:21 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:21 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:21 DEBUG opendrift.models.basemodel:1253: Data needed for 1979 elements
14:07:21 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:21 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 23:00:00 (before)
2023-09-02 00:00:00 (after)
14:07:22 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:22 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:22 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:22 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:22 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:22 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:22 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 23x23x5) for time after (2023-09-02 00:00:00)
14:07:22 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 23:00:00) in space (linearNDFast)
14:07:22 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:22 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 00:00:00) in space (linearNDFast)
14:07:22 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 791 elements, expanding data 1
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 791 elements, expanding data 1
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 839 elements, expanding data 1
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 2
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 839 elements, expanding data 1
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 2
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 839 elements, expanding data 1
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 2
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 839 elements, expanding data 1
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 2
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 839 elements, expanding data 1
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 2
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1393 elements, expanding data 1
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 261 elements, expanding data 2
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1393 elements, expanding data 1
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 261 elements, expanding data 2
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1393 elements, expanding data 1
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 261 elements, expanding data 2
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1393 elements, expanding data 1
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 261 elements, expanding data 2
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1393 elements, expanding data 1
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 261 elements, expanding data 2
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 791 elements, expanding data 1
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 791 elements, expanding data 1
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 791 elements, expanding data 1
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 791 elements, expanding data 1
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 791 elements, expanding data 1
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:22 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 23:00:00, weight 0.56) and
after (2023-09-02 00:00:00, weight 0.44) in time
14:07:22 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.0559179152511 and -58.975348472384844 degrees.
14:07:22 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.0559179152511 and -58.975348472384844 degrees.
14:07:22 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:22 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:22 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:22 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:22 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:22 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:22 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.744149 (min) 1.25153 (max)
14:07:22 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.10707 (min) 0.792067 (max)
14:07:22 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000159488 (min) 0.00062284 (max)
14:07:22 DEBUG opendrift.models.basemodel:1524: x_wind: -7.38935 (min) 5.86109 (max)
14:07:22 DEBUG opendrift.models.basemodel:1524: y_wind: -7.14231 (min) 5.43342 (max)
14:07:22 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:22 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:22 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:22 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:22 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:22 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:22 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:22 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.0303 (max)
14:07:22 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:22 DEBUG opendrift.models.basemodel:1527: 1979 active elements
14:07:22 DEBUG opendrift.models.basemodel:1538: 59.102717720927004 <- latitude -> 59.180603454146144
14:07:22 DEBUG opendrift.models.basemodel:1543: 10.944092650913188 <- longitude -> 11.024662069655822
14:07:22 DEBUG opendrift.models.basemodel:1548: -13.74526607141615 <- z -> 0.0
14:07:22 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:22 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:22 DEBUG opendrift.models.physics_methods:1050: min: 0.015362, mean: 2.404828, max: 6.519214
14:07:22 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.015362, mean: 2.404828, max: 6.519214
14:07:22 DEBUG opendrift.models.basemodel:813: 183 elements hit coastline, moving back to water
14:07:22 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
14:07:22 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:22 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:22 DEBUG opendrift.models.physics_methods:828: Advecting 34 of 1979 elements above 0.100m with wind-sheared ocean current (0.018078 m/s - 0.102726 m/s)
14:07:22 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:22 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:22 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.052592827510671604
14:07:22 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:22 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:22 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:22 DEBUG opendrift.models.oceandrift:582: 193 elements penetrated seafloor, lifting up
14:07:22 DEBUG opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
14:07:22 DEBUG opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
14:07:22 DEBUG opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
14:07:22 DEBUG opendrift.models.oceandrift:582: 150 elements penetrated seafloor, lifting up
14:07:22 DEBUG opendrift.models.oceandrift:600: 23 elements reached seafloor, set to bottom
14:07:22 DEBUG opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
14:07:22 DEBUG opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
14:07:22 DEBUG opendrift.models.oceandrift:582: 131 elements penetrated seafloor, lifting up
14:07:22 DEBUG opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
14:07:22 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
14:07:22 DEBUG opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
14:07:22 DEBUG opendrift.models.oceandrift:582: 134 elements penetrated seafloor, lifting up
14:07:22 DEBUG opendrift.models.oceandrift:600: 29 elements reached seafloor, set to bottom
14:07:22 DEBUG opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
14:07:22 DEBUG opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
14:07:22 DEBUG opendrift.models.oceandrift:582: 129 elements penetrated seafloor, lifting up
14:07:22 DEBUG opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
14:07:22 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
14:07:22 DEBUG opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
14:07:22 DEBUG opendrift.models.oceandrift:582: 105 elements penetrated seafloor, lifting up
14:07:22 DEBUG opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
14:07:22 DEBUG opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
14:07:22 DEBUG opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
14:07:22 DEBUG opendrift.models.oceandrift:582: 119 elements penetrated seafloor, lifting up
14:07:22 DEBUG opendrift.models.oceandrift:600: 19 elements reached seafloor, set to bottom
14:07:22 DEBUG opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
14:07:22 DEBUG opendrift.models.sedimentdrift:112: Settling 19 elements at seafloor
14:07:22 DEBUG opendrift.models.oceandrift:582: 112 elements penetrated seafloor, lifting up
14:07:22 DEBUG opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
14:07:22 DEBUG opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
14:07:22 DEBUG opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
14:07:22 DEBUG opendrift.models.oceandrift:582: 111 elements penetrated seafloor, lifting up
14:07:22 DEBUG opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
14:07:22 DEBUG opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
14:07:22 DEBUG opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
14:07:22 DEBUG opendrift.models.oceandrift:582: 109 elements penetrated seafloor, lifting up
14:07:22 DEBUG opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
14:07:22 DEBUG opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
14:07:22 DEBUG opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
14:07:22 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:22 DEBUG opendrift.models.basemodel:2945: 1979 active elements (0 deactivated)
14:07:22 DEBUG opendrift.models.basemodel:1658: to be seeded: 8021, already seeded 1979
14:07:22 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:07:22 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:22 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:22 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:22 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:22 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:22 DEBUG opendrift.models.basemodel:1253: Data needed for 2014 elements
14:07:22 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:22 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 23:00:00 (before)
2023-09-02 00:00:00 (after)
14:07:22 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 23:00:00) in space (linearNDFast)
14:07:22 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:22 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:22 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:22 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:22 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:22 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:22 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.9543 (max)
14:07:22 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:22 DEBUG opendrift.models.basemodel:1527: 2014 active elements
14:07:22 DEBUG opendrift.models.basemodel:1538: 59.103695279662254 <- latitude -> 59.17927602871028
14:07:22 DEBUG opendrift.models.basemodel:1543: 10.94271101799386 <- longitude -> 11.024592268442222
14:07:22 DEBUG opendrift.models.basemodel:1548: -13.518789520263672 <- z -> 0.0
14:07:22 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:22 DEBUG opendrift.models.basemodel:836: Lifting 155 elements to seafloor.
14:07:22 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:22 INFO opendrift.models.basemodel:2882: 2023-09-01 23:36:21.121579 - step 58 of 216 - 2014 active elements (0 deactivated)
14:07:22 DEBUG opendrift.models.basemodel:2888: 7986 elements scheduled.
14:07:22 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:22 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:22 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:22 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:22 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:22 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:22 DEBUG opendrift.models.basemodel:1253: Data needed for 2014 elements
14:07:22 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:22 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:22 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:22 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:22 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:22 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:22 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:22 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:22 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:22 DEBUG opendrift.models.basemodel:1253: Data needed for 2014 elements
14:07:22 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:22 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 23:00:00 (before)
2023-09-02 00:00:00 (after)
14:07:22 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:22 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:22 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:22 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:22 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:22 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:22 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 23x22x5) for time after (2023-09-02 00:00:00)
14:07:22 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 23:00:00) in space (linearNDFast)
14:07:22 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:22 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 00:00:00) in space (linearNDFast)
14:07:22 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 842 elements, expanding data 1
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 842 elements, expanding data 1
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 888 elements, expanding data 1
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 2
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 888 elements, expanding data 1
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 2
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 888 elements, expanding data 1
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 2
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 888 elements, expanding data 1
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 2
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 888 elements, expanding data 1
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 2
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1433 elements, expanding data 1
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 280 elements, expanding data 2
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1433 elements, expanding data 1
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 280 elements, expanding data 2
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1433 elements, expanding data 1
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 280 elements, expanding data 2
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1433 elements, expanding data 1
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 280 elements, expanding data 2
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1433 elements, expanding data 1
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 280 elements, expanding data 2
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 842 elements, expanding data 1
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 842 elements, expanding data 1
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 842 elements, expanding data 1
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 842 elements, expanding data 1
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 842 elements, expanding data 1
14:07:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:22 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 23:00:00, weight 0.39) and
after (2023-09-02 00:00:00, weight 0.61) in time
14:07:22 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.057299547393 and -58.97541827634632 degrees.
14:07:22 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.057299547393 and -58.97541827634632 degrees.
14:07:22 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:22 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:22 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:22 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:22 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:22 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:22 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.766765 (min) 1.16364 (max)
14:07:22 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.911588 (min) 0.786864 (max)
14:07:22 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000136816 (min) 0.000429586 (max)
14:07:22 DEBUG opendrift.models.basemodel:1524: x_wind: -8.2326 (min) 5.85437 (max)
14:07:22 DEBUG opendrift.models.basemodel:1524: y_wind: -7.68194 (min) 6.14931 (max)
14:07:22 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:22 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:22 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:22 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:22 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:22 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:22 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:22 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.9543 (max)
14:07:22 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:22 DEBUG opendrift.models.basemodel:1527: 2014 active elements
14:07:22 DEBUG opendrift.models.basemodel:1538: 59.103695279662254 <- latitude -> 59.17927602871028
14:07:22 DEBUG opendrift.models.basemodel:1543: 10.94271101799386 <- longitude -> 11.024592268442222
14:07:22 DEBUG opendrift.models.basemodel:1548: -13.241070747375488 <- z -> 0.0
14:07:22 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:22 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:22 DEBUG opendrift.models.physics_methods:1050: min: 0.029438, mean: 2.405999, max: 7.175778
14:07:22 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.029438, mean: 2.405999, max: 7.175778
14:07:22 DEBUG opendrift.models.basemodel:813: 185 elements hit coastline, moving back to water
14:07:22 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
14:07:22 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:22 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:22 DEBUG opendrift.models.physics_methods:828: Advecting 37 of 2014 elements above 0.100m with wind-sheared ocean current (0.005221 m/s - 0.138816 m/s)
14:07:22 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:22 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:22 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.06371888140042305
14:07:22 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:22 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:22 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:22 DEBUG opendrift.models.oceandrift:582: 176 elements penetrated seafloor, lifting up
14:07:22 DEBUG opendrift.models.oceandrift:600: 17 elements reached seafloor, set to bottom
14:07:22 DEBUG opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
14:07:22 DEBUG opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
14:07:22 DEBUG opendrift.models.oceandrift:582: 156 elements penetrated seafloor, lifting up
14:07:22 DEBUG opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
14:07:22 DEBUG opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
14:07:22 DEBUG opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
14:07:22 DEBUG opendrift.models.oceandrift:582: 145 elements penetrated seafloor, lifting up
14:07:22 DEBUG opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
14:07:22 DEBUG opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
14:07:22 DEBUG opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
14:07:22 DEBUG opendrift.models.oceandrift:582: 127 elements penetrated seafloor, lifting up
14:07:22 DEBUG opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
14:07:22 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
14:07:22 DEBUG opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
14:07:22 DEBUG opendrift.models.oceandrift:582: 104 elements penetrated seafloor, lifting up
14:07:22 DEBUG opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
14:07:22 DEBUG opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
14:07:22 DEBUG opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
14:07:22 DEBUG opendrift.models.oceandrift:582: 110 elements penetrated seafloor, lifting up
14:07:22 DEBUG opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
14:07:22 DEBUG opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
14:07:22 DEBUG opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
14:07:22 DEBUG opendrift.models.oceandrift:582: 112 elements penetrated seafloor, lifting up
14:07:22 DEBUG opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
14:07:22 DEBUG opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
14:07:22 DEBUG opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
14:07:22 DEBUG opendrift.models.oceandrift:582: 128 elements penetrated seafloor, lifting up
14:07:22 DEBUG opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
14:07:22 DEBUG opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
14:07:22 DEBUG opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
14:07:22 DEBUG opendrift.models.oceandrift:582: 112 elements penetrated seafloor, lifting up
14:07:22 DEBUG opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
14:07:22 DEBUG opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
14:07:22 DEBUG opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
14:07:22 DEBUG opendrift.models.oceandrift:582: 103 elements penetrated seafloor, lifting up
14:07:22 DEBUG opendrift.models.oceandrift:600: 20 elements reached seafloor, set to bottom
14:07:22 DEBUG opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
14:07:22 DEBUG opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
14:07:22 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:22 DEBUG opendrift.models.basemodel:2945: 2014 active elements (0 deactivated)
14:07:22 DEBUG opendrift.models.basemodel:1658: to be seeded: 7986, already seeded 2014
14:07:22 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:07:22 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:22 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:22 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:22 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:22 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:22 DEBUG opendrift.models.basemodel:1253: Data needed for 2049 elements
14:07:22 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:22 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 23:00:00 (before)
2023-09-02 00:00:00 (after)
14:07:22 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 23:00:00) in space (linearNDFast)
14:07:22 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:22 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:22 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:22 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:22 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:22 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:22 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.8382 (max)
14:07:22 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:22 DEBUG opendrift.models.basemodel:1527: 2049 active elements
14:07:22 DEBUG opendrift.models.basemodel:1538: 59.10370557380145 <- latitude -> 59.180516989430814
14:07:22 DEBUG opendrift.models.basemodel:1543: 10.941071294580855 <- longitude -> 11.024174160146938
14:07:22 DEBUG opendrift.models.basemodel:1548: -14.03549503326416 <- z -> 0.0
14:07:22 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:22 DEBUG opendrift.models.basemodel:836: Lifting 150 elements to seafloor.
14:07:22 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:22 INFO opendrift.models.basemodel:2882: 2023-09-01 23:46:21.121579 - step 59 of 216 - 2049 active elements (0 deactivated)
14:07:22 DEBUG opendrift.models.basemodel:2888: 7951 elements scheduled.
14:07:22 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:22 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:22 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:22 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:22 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:22 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:22 DEBUG opendrift.models.basemodel:1253: Data needed for 2049 elements
14:07:22 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:22 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:22 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:22 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:22 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:22 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:22 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:22 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:22 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:22 DEBUG opendrift.models.basemodel:1253: Data needed for 2049 elements
14:07:22 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:22 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 23:00:00 (before)
2023-09-02 00:00:00 (after)
14:07:23 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:23 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:23 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:23 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:23 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:23 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:23 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 23x23x5) for time after (2023-09-02 00:00:00)
14:07:23 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 23:00:00) in space (linearNDFast)
14:07:23 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:23 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 00:00:00) in space (linearNDFast)
14:07:23 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 874 elements, expanding data 1
14:07:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:07:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 874 elements, expanding data 1
14:07:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:07:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 916 elements, expanding data 1
14:07:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 2
14:07:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 916 elements, expanding data 1
14:07:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 2
14:07:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 916 elements, expanding data 1
14:07:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 2
14:07:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 916 elements, expanding data 1
14:07:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 2
14:07:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 916 elements, expanding data 1
14:07:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 2
14:07:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1481 elements, expanding data 1
14:07:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 306 elements, expanding data 2
14:07:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1481 elements, expanding data 1
14:07:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 306 elements, expanding data 2
14:07:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1481 elements, expanding data 1
14:07:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 306 elements, expanding data 2
14:07:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1481 elements, expanding data 1
14:07:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 306 elements, expanding data 2
14:07:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1481 elements, expanding data 1
14:07:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 306 elements, expanding data 2
14:07:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 874 elements, expanding data 1
14:07:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:07:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 874 elements, expanding data 1
14:07:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:07:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 874 elements, expanding data 1
14:07:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:07:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 874 elements, expanding data 1
14:07:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:07:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 874 elements, expanding data 1
14:07:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:07:23 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 23:00:00, weight 0.23) and
after (2023-09-02 00:00:00, weight 0.77) in time
14:07:23 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05893926131517 and -58.97583639162541 degrees.
14:07:23 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05893926131517 and -58.97583639162541 degrees.
14:07:23 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:23 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:23 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:23 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:23 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:23 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:23 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.676768 (min) 1.41255 (max)
14:07:23 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.997706 (min) 0.81619 (max)
14:07:23 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000114863 (min) 0.000499027 (max)
14:07:23 DEBUG opendrift.models.basemodel:1524: x_wind: -7.77422 (min) 5.55449 (max)
14:07:23 DEBUG opendrift.models.basemodel:1524: y_wind: -8.58914 (min) 5.69589 (max)
14:07:23 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:23 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:23 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:23 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:23 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:23 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:23 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:23 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.8382 (max)
14:07:23 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:23 DEBUG opendrift.models.basemodel:1527: 2049 active elements
14:07:23 DEBUG opendrift.models.basemodel:1538: 59.10370557380145 <- latitude -> 59.180516989430814
14:07:23 DEBUG opendrift.models.basemodel:1543: 10.941071294580855 <- longitude -> 11.024174160146938
14:07:23 DEBUG opendrift.models.basemodel:1548: -14.03549503326416 <- z -> 0.0
14:07:23 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:23 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:23 DEBUG opendrift.models.physics_methods:1050: min: 0.044404, mean: 2.367462, max: 7.449304
14:07:23 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.044404, mean: 2.367462, max: 7.449304
14:07:23 DEBUG opendrift.models.basemodel:813: 219 elements hit coastline, moving back to water
14:07:23 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:07:23 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:23 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:23 DEBUG opendrift.models.physics_methods:828: Advecting 35 of 2049 elements above 0.100m with wind-sheared ocean current (0.001561 m/s - 0.127471 m/s)
14:07:23 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:23 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:23 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.068668821117239
14:07:23 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:23 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:23 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:23 DEBUG opendrift.models.oceandrift:582: 186 elements penetrated seafloor, lifting up
14:07:23 DEBUG opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
14:07:23 DEBUG opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
14:07:23 DEBUG opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
14:07:23 DEBUG opendrift.models.oceandrift:582: 147 elements penetrated seafloor, lifting up
14:07:23 DEBUG opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
14:07:23 DEBUG opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
14:07:23 DEBUG opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
14:07:23 DEBUG opendrift.models.oceandrift:582: 138 elements penetrated seafloor, lifting up
14:07:23 DEBUG opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
14:07:23 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
14:07:23 DEBUG opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
14:07:23 DEBUG opendrift.models.oceandrift:582: 131 elements penetrated seafloor, lifting up
14:07:23 DEBUG opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
14:07:23 DEBUG opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
14:07:23 DEBUG opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
14:07:23 DEBUG opendrift.models.oceandrift:582: 105 elements penetrated seafloor, lifting up
14:07:23 DEBUG opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
14:07:23 DEBUG opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
14:07:23 DEBUG opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
14:07:23 DEBUG opendrift.models.oceandrift:582: 108 elements penetrated seafloor, lifting up
14:07:23 DEBUG opendrift.models.oceandrift:600: 19 elements reached seafloor, set to bottom
14:07:23 DEBUG opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
14:07:23 DEBUG opendrift.models.sedimentdrift:112: Settling 19 elements at seafloor
14:07:23 DEBUG opendrift.models.oceandrift:582: 109 elements penetrated seafloor, lifting up
14:07:23 DEBUG opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
14:07:23 DEBUG opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
14:07:23 DEBUG opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
14:07:23 DEBUG opendrift.models.oceandrift:582: 120 elements penetrated seafloor, lifting up
14:07:23 DEBUG opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
14:07:23 DEBUG opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
14:07:23 DEBUG opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
14:07:23 DEBUG opendrift.models.oceandrift:582: 110 elements penetrated seafloor, lifting up
14:07:23 DEBUG opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
14:07:23 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
14:07:23 DEBUG opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
14:07:23 DEBUG opendrift.models.oceandrift:582: 113 elements penetrated seafloor, lifting up
14:07:23 DEBUG opendrift.models.oceandrift:600: 19 elements reached seafloor, set to bottom
14:07:23 DEBUG opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
14:07:23 DEBUG opendrift.models.sedimentdrift:112: Settling 19 elements at seafloor
14:07:23 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:23 DEBUG opendrift.models.basemodel:2945: 2049 active elements (0 deactivated)
14:07:23 DEBUG opendrift.models.basemodel:1658: to be seeded: 7951, already seeded 2049
14:07:23 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:07:23 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:23 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:23 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:23 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:23 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:23 DEBUG opendrift.models.basemodel:1253: Data needed for 2084 elements
14:07:23 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:23 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 23:00:00 (before)
2023-09-02 00:00:00 (after)
14:07:23 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 23:00:00) in space (linearNDFast)
14:07:23 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:23 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:23 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:23 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:23 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:23 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:23 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.8222 (max)
14:07:23 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:23 DEBUG opendrift.models.basemodel:1527: 2084 active elements
14:07:23 DEBUG opendrift.models.basemodel:1538: 59.10150189588166 <- latitude -> 59.1800119246164
14:07:23 DEBUG opendrift.models.basemodel:1543: 10.941503931632845 <- longitude -> 11.027566665782002
14:07:23 DEBUG opendrift.models.basemodel:1548: -13.613349914550781 <- z -> 0.0
14:07:23 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:23 DEBUG opendrift.models.basemodel:836: Lifting 172 elements to seafloor.
14:07:23 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:23 INFO opendrift.models.basemodel:2882: 2023-09-01 23:56:21.121579 - step 60 of 216 - 2084 active elements (0 deactivated)
14:07:23 DEBUG opendrift.models.basemodel:2888: 7916 elements scheduled.
14:07:23 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:23 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:23 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:23 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:23 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:23 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:23 DEBUG opendrift.models.basemodel:1253: Data needed for 2084 elements
14:07:23 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:23 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:23 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:23 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:23 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:23 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:23 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:23 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:23 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:23 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:23 DEBUG opendrift.models.basemodel:1253: Data needed for 2084 elements
14:07:23 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:23 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-01 23:00:00 (before)
2023-09-02 00:00:00 (after)
14:07:24 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:24 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:24 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:24 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:24 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:24 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:24 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 23x23x5) for time after (2023-09-02 00:00:00)
14:07:24 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 23:00:00) in space (linearNDFast)
14:07:24 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:24 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 00:00:00) in space (linearNDFast)
14:07:24 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 896 elements, expanding data 1
14:07:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
14:07:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 896 elements, expanding data 1
14:07:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
14:07:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 934 elements, expanding data 1
14:07:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 2
14:07:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 934 elements, expanding data 1
14:07:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 2
14:07:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 934 elements, expanding data 1
14:07:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 2
14:07:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 934 elements, expanding data 1
14:07:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 2
14:07:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 934 elements, expanding data 1
14:07:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 2
14:07:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1511 elements, expanding data 1
14:07:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 338 elements, expanding data 2
14:07:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1511 elements, expanding data 1
14:07:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 338 elements, expanding data 2
14:07:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1511 elements, expanding data 1
14:07:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 338 elements, expanding data 2
14:07:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1511 elements, expanding data 1
14:07:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 338 elements, expanding data 2
14:07:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1511 elements, expanding data 1
14:07:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 338 elements, expanding data 2
14:07:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 896 elements, expanding data 1
14:07:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
14:07:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 896 elements, expanding data 1
14:07:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
14:07:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 896 elements, expanding data 1
14:07:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
14:07:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 896 elements, expanding data 1
14:07:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
14:07:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 896 elements, expanding data 1
14:07:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
14:07:24 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 23:00:00, weight 0.06) and
after (2023-09-02 00:00:00, weight 0.94) in time
14:07:24 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.058506631303516 and -58.97244388458654 degrees.
14:07:24 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.058506631303516 and -58.97244388458654 degrees.
14:07:24 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:24 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:24 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:24 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:24 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:24 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:24 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.673512 (min) 1.38059 (max)
14:07:24 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.985727 (min) 0.854927 (max)
14:07:24 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -8.86148e-05 (min) 0.000555428 (max)
14:07:24 DEBUG opendrift.models.basemodel:1524: x_wind: -7.17664 (min) 4.98728 (max)
14:07:24 DEBUG opendrift.models.basemodel:1524: y_wind: -7.24094 (min) 6.02204 (max)
14:07:24 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:24 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:24 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:24 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:24 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:24 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:24 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:24 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.8222 (max)
14:07:24 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:24 DEBUG opendrift.models.basemodel:1527: 2084 active elements
14:07:24 DEBUG opendrift.models.basemodel:1538: 59.10150189588166 <- latitude -> 59.1800119246164
14:07:24 DEBUG opendrift.models.basemodel:1543: 10.941503931632845 <- longitude -> 11.027566665782002
14:07:24 DEBUG opendrift.models.basemodel:1548: -13.601820945739746 <- z -> 0.0
14:07:24 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:24 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:24 DEBUG opendrift.models.physics_methods:1050: min: 0.037433, mean: 2.418615, max: 6.547044
14:07:24 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.037433, mean: 2.418615, max: 6.547044
14:07:24 DEBUG opendrift.models.basemodel:813: 223 elements hit coastline, moving back to water
14:07:24 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:07:24 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:24 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:24 DEBUG opendrift.models.physics_methods:828: Advecting 35 of 2084 elements above 0.100m with wind-sheared ocean current (0.006657 m/s - 0.114807 m/s)
14:07:24 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:24 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:24 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.05304278792341231
14:07:24 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:24 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:24 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:24 DEBUG opendrift.models.oceandrift:582: 211 elements penetrated seafloor, lifting up
14:07:24 DEBUG opendrift.models.oceandrift:600: 27 elements reached seafloor, set to bottom
14:07:24 DEBUG opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
14:07:24 DEBUG opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
14:07:24 DEBUG opendrift.models.oceandrift:582: 168 elements penetrated seafloor, lifting up
14:07:24 DEBUG opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
14:07:24 DEBUG opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
14:07:24 DEBUG opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
14:07:24 DEBUG opendrift.models.oceandrift:582: 142 elements penetrated seafloor, lifting up
14:07:24 DEBUG opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
14:07:24 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
14:07:24 DEBUG opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
14:07:24 DEBUG opendrift.models.oceandrift:582: 139 elements penetrated seafloor, lifting up
14:07:24 DEBUG opendrift.models.oceandrift:600: 20 elements reached seafloor, set to bottom
14:07:24 DEBUG opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
14:07:24 DEBUG opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
14:07:24 DEBUG opendrift.models.oceandrift:582: 137 elements penetrated seafloor, lifting up
14:07:24 DEBUG opendrift.models.oceandrift:600: 23 elements reached seafloor, set to bottom
14:07:24 DEBUG opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
14:07:24 DEBUG opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
14:07:24 DEBUG opendrift.models.oceandrift:582: 143 elements penetrated seafloor, lifting up
14:07:24 DEBUG opendrift.models.oceandrift:600: 19 elements reached seafloor, set to bottom
14:07:24 DEBUG opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
14:07:24 DEBUG opendrift.models.sedimentdrift:112: Settling 19 elements at seafloor
14:07:24 DEBUG opendrift.models.oceandrift:582: 121 elements penetrated seafloor, lifting up
14:07:24 DEBUG opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
14:07:24 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
14:07:24 DEBUG opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
14:07:24 DEBUG opendrift.models.oceandrift:582: 133 elements penetrated seafloor, lifting up
14:07:24 DEBUG opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
14:07:24 DEBUG opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
14:07:24 DEBUG opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
14:07:24 DEBUG opendrift.models.oceandrift:582: 122 elements penetrated seafloor, lifting up
14:07:24 DEBUG opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
14:07:24 DEBUG opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
14:07:24 DEBUG opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
14:07:24 DEBUG opendrift.models.oceandrift:582: 131 elements penetrated seafloor, lifting up
14:07:24 DEBUG opendrift.models.oceandrift:600: 20 elements reached seafloor, set to bottom
14:07:24 DEBUG opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
14:07:24 DEBUG opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
14:07:24 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:24 DEBUG opendrift.models.basemodel:2945: 2084 active elements (0 deactivated)
14:07:24 DEBUG opendrift.models.basemodel:1658: to be seeded: 7916, already seeded 2084
14:07:24 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:07:24 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:24 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:24 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:24 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:24 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:24 DEBUG opendrift.models.basemodel:1253: Data needed for 2118 elements
14:07:24 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:24 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 00:00:00 (before)
2023-09-02 01:00:00 (after)
14:07:24 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 00:00:00) in space (linearNDFast)
14:07:24 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:24 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:24 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:24 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:24 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:24 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:24 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.8497 (max)
14:07:24 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:24 DEBUG opendrift.models.basemodel:1527: 2118 active elements
14:07:24 DEBUG opendrift.models.basemodel:1538: 59.10117432982739 <- latitude -> 59.17918659536423
14:07:24 DEBUG opendrift.models.basemodel:1543: 10.943627956063402 <- longitude -> 11.025585353663647
14:07:24 DEBUG opendrift.models.basemodel:1548: -13.730998268127442 <- z -> 0.0
14:07:24 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:24 DEBUG opendrift.models.basemodel:836: Lifting 157 elements to seafloor.
14:07:24 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:24 INFO opendrift.models.basemodel:2882: 2023-09-02 00:06:21.121579 - step 61 of 216 - 2118 active elements (0 deactivated)
14:07:24 DEBUG opendrift.models.basemodel:2888: 7882 elements scheduled.
14:07:24 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:24 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:24 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:24 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:24 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:24 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:24 DEBUG opendrift.models.basemodel:1253: Data needed for 2118 elements
14:07:24 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:24 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:24 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:24 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:24 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:24 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:24 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:24 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:24 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:24 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:24 DEBUG opendrift.models.basemodel:1253: Data needed for 2118 elements
14:07:24 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:24 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 00:00:00 (before)
2023-09-02 01:00:00 (after)
14:07:25 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:25 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:25 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:25 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:25 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:25 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:25 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 23x22x5) for time after (2023-09-02 01:00:00)
14:07:25 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 00:00:00) in space (linearNDFast)
14:07:25 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:25 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 01:00:00) in space (linearNDFast)
14:07:25 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 926 elements, expanding data 1
14:07:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:07:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 926 elements, expanding data 1
14:07:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:07:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 966 elements, expanding data 1
14:07:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
14:07:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 966 elements, expanding data 1
14:07:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
14:07:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 966 elements, expanding data 1
14:07:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
14:07:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 966 elements, expanding data 1
14:07:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
14:07:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 966 elements, expanding data 1
14:07:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
14:07:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1531 elements, expanding data 1
14:07:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 359 elements, expanding data 2
14:07:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1531 elements, expanding data 1
14:07:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 359 elements, expanding data 2
14:07:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1531 elements, expanding data 1
14:07:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 359 elements, expanding data 2
14:07:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1531 elements, expanding data 1
14:07:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 359 elements, expanding data 2
14:07:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1531 elements, expanding data 1
14:07:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 359 elements, expanding data 2
14:07:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 926 elements, expanding data 1
14:07:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:07:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 926 elements, expanding data 1
14:07:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:07:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 926 elements, expanding data 1
14:07:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:07:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 926 elements, expanding data 1
14:07:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:07:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 926 elements, expanding data 1
14:07:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:07:25 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 00:00:00, weight 0.89) and
after (2023-09-02 01:00:00, weight 0.11) in time
14:07:25 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05638260345876 and -58.974425203567854 degrees.
14:07:25 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05638260345876 and -58.974425203567854 degrees.
14:07:25 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:25 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:25 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:25 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:25 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:25 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:25 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.723104 (min) 1.24144 (max)
14:07:25 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.925593 (min) 0.814755 (max)
14:07:25 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000105062 (min) 0.000483135 (max)
14:07:25 DEBUG opendrift.models.basemodel:1524: x_wind: -7.57361 (min) 6.03025 (max)
14:07:25 DEBUG opendrift.models.basemodel:1524: y_wind: -7.37612 (min) 5.88185 (max)
14:07:25 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:25 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:25 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:25 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:25 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:25 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:25 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:25 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.8497 (max)
14:07:25 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:25 DEBUG opendrift.models.basemodel:1527: 2118 active elements
14:07:25 DEBUG opendrift.models.basemodel:1538: 59.10117432982739 <- latitude -> 59.17918659536423
14:07:25 DEBUG opendrift.models.basemodel:1543: 10.943627956063402 <- longitude -> 11.025585353663647
14:07:25 DEBUG opendrift.models.basemodel:1548: -13.730998268127442 <- z -> 0.0
14:07:25 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:25 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:25 DEBUG opendrift.models.physics_methods:1050: min: 0.035008, mean: 2.365445, max: 7.331519
14:07:25 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.035008, mean: 2.365445, max: 7.331519
14:07:25 DEBUG opendrift.models.basemodel:813: 226 elements hit coastline, moving back to water
14:07:25 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:07:25 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:25 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:25 DEBUG opendrift.models.physics_methods:828: Advecting 34 of 2118 elements above 0.100m with wind-sheared ocean current (0.007919 m/s - 0.124992 m/s)
14:07:25 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:25 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:25 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.06651459199936867
14:07:25 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:25 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:25 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:25 DEBUG opendrift.models.oceandrift:582: 193 elements penetrated seafloor, lifting up
14:07:25 DEBUG opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
14:07:25 DEBUG opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
14:07:25 DEBUG opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
14:07:25 DEBUG opendrift.models.oceandrift:582: 149 elements penetrated seafloor, lifting up
14:07:25 DEBUG opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
14:07:25 DEBUG opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
14:07:25 DEBUG opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
14:07:25 DEBUG opendrift.models.oceandrift:582: 164 elements penetrated seafloor, lifting up
14:07:25 DEBUG opendrift.models.oceandrift:600: 29 elements reached seafloor, set to bottom
14:07:25 DEBUG opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
14:07:25 DEBUG opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
14:07:25 DEBUG opendrift.models.oceandrift:582: 118 elements penetrated seafloor, lifting up
14:07:25 DEBUG opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
14:07:25 DEBUG opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
14:07:25 DEBUG opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
14:07:25 DEBUG opendrift.models.oceandrift:582: 130 elements penetrated seafloor, lifting up
14:07:25 DEBUG opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
14:07:25 DEBUG opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
14:07:25 DEBUG opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
14:07:25 DEBUG opendrift.models.oceandrift:582: 135 elements penetrated seafloor, lifting up
14:07:25 DEBUG opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
14:07:25 DEBUG opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
14:07:25 DEBUG opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
14:07:25 DEBUG opendrift.models.oceandrift:582: 134 elements penetrated seafloor, lifting up
14:07:25 DEBUG opendrift.models.oceandrift:600: 19 elements reached seafloor, set to bottom
14:07:25 DEBUG opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
14:07:25 DEBUG opendrift.models.sedimentdrift:112: Settling 19 elements at seafloor
14:07:25 DEBUG opendrift.models.oceandrift:582: 117 elements penetrated seafloor, lifting up
14:07:25 DEBUG opendrift.models.oceandrift:600: 23 elements reached seafloor, set to bottom
14:07:25 DEBUG opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
14:07:25 DEBUG opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
14:07:25 DEBUG opendrift.models.oceandrift:582: 121 elements penetrated seafloor, lifting up
14:07:25 DEBUG opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
14:07:25 DEBUG opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
14:07:25 DEBUG opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
14:07:25 DEBUG opendrift.models.oceandrift:582: 111 elements penetrated seafloor, lifting up
14:07:25 DEBUG opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
14:07:25 DEBUG opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
14:07:25 DEBUG opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
14:07:25 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:25 DEBUG opendrift.models.basemodel:2945: 2118 active elements (0 deactivated)
14:07:25 DEBUG opendrift.models.basemodel:1658: to be seeded: 7882, already seeded 2118
14:07:25 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:07:25 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:25 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:25 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:25 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:25 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:25 DEBUG opendrift.models.basemodel:1253: Data needed for 2153 elements
14:07:25 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:25 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 00:00:00 (before)
2023-09-02 01:00:00 (after)
14:07:25 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 00:00:00) in space (linearNDFast)
14:07:25 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:25 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:25 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:25 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:25 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:25 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:25 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.8198 (max)
14:07:25 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:25 DEBUG opendrift.models.basemodel:1527: 2153 active elements
14:07:25 DEBUG opendrift.models.basemodel:1538: 59.10037056013577 <- latitude -> 59.179078802943565
14:07:25 DEBUG opendrift.models.basemodel:1543: 10.941522984461887 <- longitude -> 11.02539974446862
14:07:25 DEBUG opendrift.models.basemodel:1548: -13.859875679016113 <- z -> 0.0
14:07:25 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:25 DEBUG opendrift.models.basemodel:836: Lifting 168 elements to seafloor.
14:07:25 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:25 INFO opendrift.models.basemodel:2882: 2023-09-02 00:16:21.121579 - step 62 of 216 - 2153 active elements (0 deactivated)
14:07:25 DEBUG opendrift.models.basemodel:2888: 7847 elements scheduled.
14:07:25 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:25 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:25 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:25 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:25 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:25 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:25 DEBUG opendrift.models.basemodel:1253: Data needed for 2153 elements
14:07:25 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:25 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:25 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:25 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:25 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:25 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:25 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:25 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:25 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:25 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:25 DEBUG opendrift.models.basemodel:1253: Data needed for 2153 elements
14:07:25 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:25 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 00:00:00 (before)
2023-09-02 01:00:00 (after)
14:07:26 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:26 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:26 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:26 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:26 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:26 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:26 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 23x22x5) for time after (2023-09-02 01:00:00)
14:07:26 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 00:00:00) in space (linearNDFast)
14:07:26 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:26 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 01:00:00) in space (linearNDFast)
14:07:26 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 952 elements, expanding data 1
14:07:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 952 elements, expanding data 1
14:07:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 995 elements, expanding data 1
14:07:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 2
14:07:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 995 elements, expanding data 1
14:07:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 2
14:07:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 995 elements, expanding data 1
14:07:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 2
14:07:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 995 elements, expanding data 1
14:07:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 2
14:07:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 995 elements, expanding data 1
14:07:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 2
14:07:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1573 elements, expanding data 1
14:07:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 374 elements, expanding data 2
14:07:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1573 elements, expanding data 1
14:07:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 374 elements, expanding data 2
14:07:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1573 elements, expanding data 1
14:07:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 374 elements, expanding data 2
14:07:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1573 elements, expanding data 1
14:07:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 374 elements, expanding data 2
14:07:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1573 elements, expanding data 1
14:07:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 374 elements, expanding data 2
14:07:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 952 elements, expanding data 1
14:07:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 952 elements, expanding data 1
14:07:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 952 elements, expanding data 1
14:07:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 952 elements, expanding data 1
14:07:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 952 elements, expanding data 1
14:07:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:26 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 00:00:00, weight 0.73) and
after (2023-09-02 01:00:00, weight 0.27) in time
14:07:26 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05848757673371 and -58.97461081631392 degrees.
14:07:26 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05848757673371 and -58.97461081631392 degrees.
14:07:26 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:26 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:26 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:26 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:26 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:26 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:26 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.734961 (min) 1.24925 (max)
14:07:26 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.14152 (min) 0.656619 (max)
14:07:26 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -8.98976e-05 (min) 0.000559567 (max)
14:07:26 DEBUG opendrift.models.basemodel:1524: x_wind: -8.38782 (min) 6.00338 (max)
14:07:26 DEBUG opendrift.models.basemodel:1524: y_wind: -7.99894 (min) 6.66212 (max)
14:07:26 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:26 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:26 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:26 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:26 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:26 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:26 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:26 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.8198 (max)
14:07:26 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:26 DEBUG opendrift.models.basemodel:1527: 2153 active elements
14:07:26 DEBUG opendrift.models.basemodel:1538: 59.10037056013577 <- latitude -> 59.179078802943565
14:07:26 DEBUG opendrift.models.basemodel:1543: 10.941522984461887 <- longitude -> 11.02539974446862
14:07:26 DEBUG opendrift.models.basemodel:1548: -13.80220890045166 <- z -> 0.0
14:07:26 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:26 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:26 DEBUG opendrift.models.physics_methods:1050: min: 0.029932, mean: 2.411106, max: 7.712341
14:07:26 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.029932, mean: 2.411106, max: 7.712341
14:07:26 DEBUG opendrift.models.basemodel:813: 234 elements hit coastline, moving back to water
14:07:26 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
14:07:26 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:26 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:26 DEBUG opendrift.models.physics_methods:828: Advecting 36 of 2153 elements above 0.100m with wind-sheared ocean current (0.005195 m/s - 0.105726 m/s)
14:07:26 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:26 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:26 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.0736035639720726
14:07:26 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:26 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:26 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:26 DEBUG opendrift.models.oceandrift:582: 213 elements penetrated seafloor, lifting up
14:07:26 DEBUG opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
14:07:26 DEBUG opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
14:07:26 DEBUG opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
14:07:26 DEBUG opendrift.models.oceandrift:582: 181 elements penetrated seafloor, lifting up
14:07:26 DEBUG opendrift.models.oceandrift:600: 40 elements reached seafloor, set to bottom
14:07:26 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
14:07:26 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
14:07:26 DEBUG opendrift.models.oceandrift:582: 147 elements penetrated seafloor, lifting up
14:07:26 DEBUG opendrift.models.oceandrift:600: 20 elements reached seafloor, set to bottom
14:07:26 DEBUG opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
14:07:26 DEBUG opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
14:07:26 DEBUG opendrift.models.oceandrift:582: 137 elements penetrated seafloor, lifting up
14:07:26 DEBUG opendrift.models.oceandrift:600: 29 elements reached seafloor, set to bottom
14:07:26 DEBUG opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
14:07:26 DEBUG opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
14:07:26 DEBUG opendrift.models.oceandrift:582: 132 elements penetrated seafloor, lifting up
14:07:26 DEBUG opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
14:07:26 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
14:07:26 DEBUG opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
14:07:26 DEBUG opendrift.models.oceandrift:582: 116 elements penetrated seafloor, lifting up
14:07:26 DEBUG opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
14:07:26 DEBUG opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
14:07:26 DEBUG opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
14:07:26 DEBUG opendrift.models.oceandrift:582: 114 elements penetrated seafloor, lifting up
14:07:26 DEBUG opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
14:07:26 DEBUG opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
14:07:26 DEBUG opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
14:07:26 DEBUG opendrift.models.oceandrift:582: 143 elements penetrated seafloor, lifting up
14:07:26 DEBUG opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
14:07:26 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
14:07:26 DEBUG opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
14:07:26 DEBUG opendrift.models.oceandrift:582: 126 elements penetrated seafloor, lifting up
14:07:26 DEBUG opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
14:07:26 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
14:07:26 DEBUG opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
14:07:26 DEBUG opendrift.models.oceandrift:582: 139 elements penetrated seafloor, lifting up
14:07:26 DEBUG opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
14:07:26 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
14:07:26 DEBUG opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
14:07:26 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:26 DEBUG opendrift.models.basemodel:2945: 2153 active elements (0 deactivated)
14:07:26 DEBUG opendrift.models.basemodel:1658: to be seeded: 7847, already seeded 2153
14:07:26 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:07:26 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:26 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:26 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:26 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:26 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:26 DEBUG opendrift.models.basemodel:1253: Data needed for 2188 elements
14:07:26 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:26 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 00:00:00 (before)
2023-09-02 01:00:00 (after)
14:07:26 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 00:00:00) in space (linearNDFast)
14:07:26 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:26 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:26 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:26 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:26 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:26 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:26 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.8436 (max)
14:07:26 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:26 DEBUG opendrift.models.basemodel:1527: 2188 active elements
14:07:26 DEBUG opendrift.models.basemodel:1538: 59.10173747242132 <- latitude -> 59.18018085745736
14:07:26 DEBUG opendrift.models.basemodel:1543: 10.938921932242176 <- longitude -> 11.025611218916472
14:07:26 DEBUG opendrift.models.basemodel:1548: -14.304811706542969 <- z -> 0.0
14:07:26 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:26 DEBUG opendrift.models.basemodel:836: Lifting 172 elements to seafloor.
14:07:26 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:26 INFO opendrift.models.basemodel:2882: 2023-09-02 00:26:21.121579 - step 63 of 216 - 2188 active elements (0 deactivated)
14:07:26 DEBUG opendrift.models.basemodel:2888: 7812 elements scheduled.
14:07:26 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:26 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:26 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:26 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:26 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:26 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:26 DEBUG opendrift.models.basemodel:1253: Data needed for 2188 elements
14:07:26 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:26 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:26 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:26 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:26 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:26 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:26 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:26 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:26 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:26 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:26 DEBUG opendrift.models.basemodel:1253: Data needed for 2188 elements
14:07:26 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:26 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 00:00:00 (before)
2023-09-02 01:00:00 (after)
14:07:27 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:27 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:27 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:27 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:27 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:27 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:27 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 23x23x5) for time after (2023-09-02 01:00:00)
14:07:27 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 00:00:00) in space (linearNDFast)
14:07:27 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:27 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 01:00:00) in space (linearNDFast)
14:07:27 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 986 elements, expanding data 1
14:07:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 986 elements, expanding data 1
14:07:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1030 elements, expanding data 1
14:07:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 2
14:07:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1030 elements, expanding data 1
14:07:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 2
14:07:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1030 elements, expanding data 1
14:07:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 2
14:07:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1030 elements, expanding data 1
14:07:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 2
14:07:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1030 elements, expanding data 1
14:07:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 2
14:07:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1615 elements, expanding data 1
14:07:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 398 elements, expanding data 2
14:07:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1615 elements, expanding data 1
14:07:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 398 elements, expanding data 2
14:07:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1615 elements, expanding data 1
14:07:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 398 elements, expanding data 2
14:07:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1615 elements, expanding data 1
14:07:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 398 elements, expanding data 2
14:07:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1615 elements, expanding data 1
14:07:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 398 elements, expanding data 2
14:07:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 986 elements, expanding data 1
14:07:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 986 elements, expanding data 1
14:07:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 986 elements, expanding data 1
14:07:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 986 elements, expanding data 1
14:07:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 986 elements, expanding data 1
14:07:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:27 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 00:00:00, weight 0.56) and
after (2023-09-02 01:00:00, weight 0.44) in time
14:07:27 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.06108862326003 and -58.974399325577316 degrees.
14:07:27 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.06108862326003 and -58.974399325577316 degrees.
14:07:27 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:27 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:27 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:27 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:27 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:27 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:27 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.676856 (min) 1.15638 (max)
14:07:27 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.965428 (min) 0.744927 (max)
14:07:27 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -7.87853e-05 (min) 0.000523045 (max)
14:07:27 DEBUG opendrift.models.basemodel:1524: x_wind: -8.47494 (min) 5.96238 (max)
14:07:27 DEBUG opendrift.models.basemodel:1524: y_wind: -7.63209 (min) 5.22857 (max)
14:07:27 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:27 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:27 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:27 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:27 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:27 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:27 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:27 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.8436 (max)
14:07:27 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:27 DEBUG opendrift.models.basemodel:1527: 2188 active elements
14:07:27 DEBUG opendrift.models.basemodel:1538: 59.10173747242132 <- latitude -> 59.18018085745736
14:07:27 DEBUG opendrift.models.basemodel:1543: 10.938921932242176 <- longitude -> 11.025611218916472
14:07:27 DEBUG opendrift.models.basemodel:1548: -14.068990707397461 <- z -> 0.0
14:07:27 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:27 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:27 DEBUG opendrift.models.physics_methods:1050: min: 0.026557, mean: 2.353432, max: 7.861008
14:07:27 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.026557, mean: 2.353432, max: 7.861008
14:07:27 DEBUG opendrift.models.basemodel:813: 255 elements hit coastline, moving back to water
14:07:27 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
14:07:27 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:27 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:27 DEBUG opendrift.models.physics_methods:828: Advecting 38 of 2188 elements above 0.100m with wind-sheared ocean current (0.013551 m/s - 0.109150 m/s)
14:07:27 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:27 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:27 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07646840418251037
14:07:27 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:27 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:27 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:27 DEBUG opendrift.models.oceandrift:582: 212 elements penetrated seafloor, lifting up
14:07:27 DEBUG opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
14:07:27 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
14:07:27 DEBUG opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
14:07:27 DEBUG opendrift.models.oceandrift:582: 178 elements penetrated seafloor, lifting up
14:07:27 DEBUG opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
14:07:27 DEBUG opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
14:07:27 DEBUG opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
14:07:27 DEBUG opendrift.models.oceandrift:582: 150 elements penetrated seafloor, lifting up
14:07:27 DEBUG opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
14:07:27 DEBUG opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
14:07:27 DEBUG opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
14:07:27 DEBUG opendrift.models.oceandrift:582: 137 elements penetrated seafloor, lifting up
14:07:27 DEBUG opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
14:07:27 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
14:07:27 DEBUG opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
14:07:27 DEBUG opendrift.models.oceandrift:582: 141 elements penetrated seafloor, lifting up
14:07:27 DEBUG opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
14:07:27 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
14:07:27 DEBUG opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
14:07:27 DEBUG opendrift.models.oceandrift:582: 155 elements penetrated seafloor, lifting up
14:07:27 DEBUG opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
14:07:27 DEBUG opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
14:07:27 DEBUG opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
14:07:27 DEBUG opendrift.models.oceandrift:582: 125 elements penetrated seafloor, lifting up
14:07:27 DEBUG opendrift.models.oceandrift:600: 19 elements reached seafloor, set to bottom
14:07:27 DEBUG opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
14:07:27 DEBUG opendrift.models.sedimentdrift:112: Settling 19 elements at seafloor
14:07:27 DEBUG opendrift.models.oceandrift:582: 127 elements penetrated seafloor, lifting up
14:07:27 DEBUG opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
14:07:27 DEBUG opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
14:07:27 DEBUG opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
14:07:27 DEBUG opendrift.models.oceandrift:582: 113 elements penetrated seafloor, lifting up
14:07:27 DEBUG opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
14:07:27 DEBUG opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
14:07:27 DEBUG opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
14:07:27 DEBUG opendrift.models.oceandrift:582: 121 elements penetrated seafloor, lifting up
14:07:27 DEBUG opendrift.models.oceandrift:600: 17 elements reached seafloor, set to bottom
14:07:27 DEBUG opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
14:07:27 DEBUG opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
14:07:27 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:27 DEBUG opendrift.models.basemodel:2945: 2188 active elements (0 deactivated)
14:07:27 DEBUG opendrift.models.basemodel:1658: to be seeded: 7812, already seeded 2188
14:07:27 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:07:27 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:27 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:27 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:27 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:27 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:27 DEBUG opendrift.models.basemodel:1253: Data needed for 2223 elements
14:07:27 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:27 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 00:00:00 (before)
2023-09-02 01:00:00 (after)
14:07:27 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 00:00:00) in space (linearNDFast)
14:07:27 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:27 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:27 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:27 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:27 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:27 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:27 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.8389 (max)
14:07:27 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:27 DEBUG opendrift.models.basemodel:1527: 2223 active elements
14:07:27 DEBUG opendrift.models.basemodel:1538: 59.09976146511825 <- latitude -> 59.17989646324638
14:07:27 DEBUG opendrift.models.basemodel:1543: 10.943485925680706 <- longitude -> 11.02675881381168
14:07:27 DEBUG opendrift.models.basemodel:1548: -13.925340568948904 <- z -> 0.0
14:07:27 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:27 DEBUG opendrift.models.basemodel:836: Lifting 184 elements to seafloor.
14:07:27 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:27 INFO opendrift.models.basemodel:2882: 2023-09-02 00:36:21.121579 - step 64 of 216 - 2223 active elements (0 deactivated)
14:07:27 DEBUG opendrift.models.basemodel:2888: 7777 elements scheduled.
14:07:27 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:27 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:27 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:27 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:27 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:27 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:27 DEBUG opendrift.models.basemodel:1253: Data needed for 2223 elements
14:07:27 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:27 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:27 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:27 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:27 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:27 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:27 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:27 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:27 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:27 DEBUG opendrift.models.basemodel:1253: Data needed for 2223 elements
14:07:27 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:27 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 00:00:00 (before)
2023-09-02 01:00:00 (after)
14:07:28 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:28 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:28 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:28 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:28 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:28 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:28 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 23x23x5) for time after (2023-09-02 01:00:00)
14:07:28 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 00:00:00) in space (linearNDFast)
14:07:28 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:28 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 01:00:00) in space (linearNDFast)
14:07:28 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1013 elements, expanding data 1
14:07:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:07:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1013 elements, expanding data 1
14:07:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:07:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1052 elements, expanding data 1
14:07:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 2
14:07:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1052 elements, expanding data 1
14:07:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 2
14:07:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1052 elements, expanding data 1
14:07:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 2
14:07:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1052 elements, expanding data 1
14:07:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 2
14:07:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1052 elements, expanding data 1
14:07:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 2
14:07:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1641 elements, expanding data 1
14:07:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 407 elements, expanding data 2
14:07:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1641 elements, expanding data 1
14:07:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 407 elements, expanding data 2
14:07:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1641 elements, expanding data 1
14:07:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 407 elements, expanding data 2
14:07:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1641 elements, expanding data 1
14:07:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 407 elements, expanding data 2
14:07:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1641 elements, expanding data 1
14:07:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 407 elements, expanding data 2
14:07:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1013 elements, expanding data 1
14:07:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:07:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1013 elements, expanding data 1
14:07:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:07:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1013 elements, expanding data 1
14:07:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:07:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1013 elements, expanding data 1
14:07:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:07:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1013 elements, expanding data 1
14:07:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:07:28 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 00:00:00, weight 0.39) and
after (2023-09-02 01:00:00, weight 0.61) in time
14:07:28 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05652463057641 and -58.97325173038156 degrees.
14:07:28 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05652463057641 and -58.97325173038156 degrees.
14:07:28 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:28 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:28 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:28 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:28 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:28 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:28 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.753094 (min) 1.15434 (max)
14:07:28 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.02373 (min) 0.709084 (max)
14:07:28 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -4.08745e-05 (min) 0.000639921 (max)
14:07:28 DEBUG opendrift.models.basemodel:1524: x_wind: -6.41541 (min) 5.73464 (max)
14:07:28 DEBUG opendrift.models.basemodel:1524: y_wind: -8.37064 (min) 6.82251 (max)
14:07:28 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:28 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:28 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:28 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:28 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:28 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:28 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:28 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.8389 (max)
14:07:28 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:28 DEBUG opendrift.models.basemodel:1527: 2223 active elements
14:07:28 DEBUG opendrift.models.basemodel:1538: 59.09976146511825 <- latitude -> 59.17989646324638
14:07:28 DEBUG opendrift.models.basemodel:1543: 10.943485925680706 <- longitude -> 11.02675881381168
14:07:28 DEBUG opendrift.models.basemodel:1548: -13.925340568948904 <- z -> 0.0
14:07:28 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:28 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:28 DEBUG opendrift.models.physics_methods:1050: min: 0.084998, mean: 2.360572, max: 8.211196
14:07:28 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.084998, mean: 2.360572, max: 8.211196
14:07:28 DEBUG opendrift.models.basemodel:813: 238 elements hit coastline, moving back to water
14:07:28 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
14:07:28 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:28 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:28 DEBUG opendrift.models.physics_methods:828: Advecting 36 of 2223 elements above 0.100m with wind-sheared ocean current (0.009444 m/s - 0.192194 m/s)
14:07:28 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:28 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:28 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08343272481067657
14:07:28 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:28 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:28 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:28 DEBUG opendrift.models.oceandrift:582: 243 elements penetrated seafloor, lifting up
14:07:28 DEBUG opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
14:07:28 DEBUG opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
14:07:28 DEBUG opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
14:07:28 DEBUG opendrift.models.oceandrift:582: 187 elements penetrated seafloor, lifting up
14:07:28 DEBUG opendrift.models.oceandrift:600: 27 elements reached seafloor, set to bottom
14:07:28 DEBUG opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
14:07:28 DEBUG opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
14:07:28 DEBUG opendrift.models.oceandrift:582: 165 elements penetrated seafloor, lifting up
14:07:28 DEBUG opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
14:07:28 DEBUG opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
14:07:28 DEBUG opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
14:07:28 DEBUG opendrift.models.oceandrift:582: 145 elements penetrated seafloor, lifting up
14:07:28 DEBUG opendrift.models.oceandrift:600: 27 elements reached seafloor, set to bottom
14:07:28 DEBUG opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
14:07:28 DEBUG opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
14:07:28 DEBUG opendrift.models.oceandrift:582: 142 elements penetrated seafloor, lifting up
14:07:28 DEBUG opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
14:07:28 DEBUG opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
14:07:28 DEBUG opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
14:07:28 DEBUG opendrift.models.oceandrift:582: 141 elements penetrated seafloor, lifting up
14:07:28 DEBUG opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
14:07:28 DEBUG opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
14:07:28 DEBUG opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
14:07:28 DEBUG opendrift.models.oceandrift:582: 141 elements penetrated seafloor, lifting up
14:07:28 DEBUG opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
14:07:28 DEBUG opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
14:07:28 DEBUG opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
14:07:28 DEBUG opendrift.models.oceandrift:582: 125 elements penetrated seafloor, lifting up
14:07:28 DEBUG opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
14:07:28 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
14:07:28 DEBUG opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
14:07:28 DEBUG opendrift.models.oceandrift:582: 160 elements penetrated seafloor, lifting up
14:07:28 DEBUG opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
14:07:28 DEBUG opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
14:07:28 DEBUG opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
14:07:28 DEBUG opendrift.models.oceandrift:582: 114 elements penetrated seafloor, lifting up
14:07:28 DEBUG opendrift.models.oceandrift:600: 19 elements reached seafloor, set to bottom
14:07:28 DEBUG opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
14:07:28 DEBUG opendrift.models.sedimentdrift:112: Settling 19 elements at seafloor
14:07:28 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:28 DEBUG opendrift.models.basemodel:2945: 2223 active elements (0 deactivated)
14:07:28 DEBUG opendrift.models.basemodel:1658: to be seeded: 7777, already seeded 2223
14:07:28 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:07:28 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:28 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:28 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:28 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:28 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:28 DEBUG opendrift.models.basemodel:1253: Data needed for 2257 elements
14:07:28 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:28 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 00:00:00 (before)
2023-09-02 01:00:00 (after)
14:07:28 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 00:00:00) in space (linearNDFast)
14:07:28 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:28 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:28 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:28 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:28 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:28 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:28 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.8797 (max)
14:07:28 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:28 DEBUG opendrift.models.basemodel:1527: 2257 active elements
14:07:28 DEBUG opendrift.models.basemodel:1538: 59.09992621604442 <- latitude -> 59.17879772211454
14:07:28 DEBUG opendrift.models.basemodel:1543: 10.940405269634102 <- longitude -> 11.0257842661719
14:07:28 DEBUG opendrift.models.basemodel:1548: -14.108237266540527 <- z -> 0.0
14:07:28 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:28 DEBUG opendrift.models.basemodel:836: Lifting 172 elements to seafloor.
14:07:28 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:28 INFO opendrift.models.basemodel:2882: 2023-09-02 00:46:21.121579 - step 65 of 216 - 2257 active elements (0 deactivated)
14:07:28 DEBUG opendrift.models.basemodel:2888: 7743 elements scheduled.
14:07:28 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:28 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:28 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:28 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:28 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:28 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:28 DEBUG opendrift.models.basemodel:1253: Data needed for 2257 elements
14:07:28 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:28 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:28 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:28 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:28 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:28 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:28 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:28 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:28 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:28 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:28 DEBUG opendrift.models.basemodel:1253: Data needed for 2257 elements
14:07:28 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:28 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 00:00:00 (before)
2023-09-02 01:00:00 (after)
14:07:29 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:29 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:29 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:29 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:29 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:29 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:29 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 23x23x5) for time after (2023-09-02 01:00:00)
14:07:29 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 00:00:00) in space (linearNDFast)
14:07:29 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:29 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 01:00:00) in space (linearNDFast)
14:07:29 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1036 elements, expanding data 1
14:07:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:07:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1036 elements, expanding data 1
14:07:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:07:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1082 elements, expanding data 1
14:07:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 2
14:07:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1082 elements, expanding data 1
14:07:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 2
14:07:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1082 elements, expanding data 1
14:07:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 2
14:07:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1082 elements, expanding data 1
14:07:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 2
14:07:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1082 elements, expanding data 1
14:07:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 2
14:07:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1655 elements, expanding data 1
14:07:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 421 elements, expanding data 2
14:07:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1655 elements, expanding data 1
14:07:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 421 elements, expanding data 2
14:07:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1655 elements, expanding data 1
14:07:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 421 elements, expanding data 2
14:07:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1655 elements, expanding data 1
14:07:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 421 elements, expanding data 2
14:07:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1655 elements, expanding data 1
14:07:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 421 elements, expanding data 2
14:07:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1036 elements, expanding data 1
14:07:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:07:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1036 elements, expanding data 1
14:07:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:07:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1036 elements, expanding data 1
14:07:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:07:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1036 elements, expanding data 1
14:07:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:07:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1036 elements, expanding data 1
14:07:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:07:29 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 00:00:00, weight 0.23) and
after (2023-09-02 01:00:00, weight 0.77) in time
14:07:29 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.0596052753607 and -58.97422629421 degrees.
14:07:29 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.0596052753607 and -58.97422629421 degrees.
14:07:29 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:29 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:29 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:29 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:29 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:29 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:29 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.744219 (min) 1.0574 (max)
14:07:29 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.940266 (min) 0.843976 (max)
14:07:29 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -2.68286e-05 (min) 0.000550295 (max)
14:07:29 DEBUG opendrift.models.basemodel:1524: x_wind: -7.23143 (min) 5.77877 (max)
14:07:29 DEBUG opendrift.models.basemodel:1524: y_wind: -10.1358 (min) 6.08816 (max)
14:07:29 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:29 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:29 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:29 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:29 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:29 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:29 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:29 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.8797 (max)
14:07:29 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:29 DEBUG opendrift.models.basemodel:1527: 2257 active elements
14:07:29 DEBUG opendrift.models.basemodel:1538: 59.09992621604442 <- latitude -> 59.17879772211454
14:07:29 DEBUG opendrift.models.basemodel:1543: 10.940405269634102 <- longitude -> 11.0257842661719
14:07:29 DEBUG opendrift.models.basemodel:1548: -14.09502124786377 <- z -> 0.0
14:07:29 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:29 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:29 DEBUG opendrift.models.physics_methods:1050: min: 0.049139, mean: 2.368044, max: 8.805673
14:07:29 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.049139, mean: 2.368044, max: 8.805673
14:07:29 DEBUG opendrift.models.basemodel:813: 254 elements hit coastline, moving back to water
14:07:29 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
14:07:29 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:29 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:29 DEBUG opendrift.models.physics_methods:828: Advecting 34 of 2257 elements above 0.100m with wind-sheared ocean current (0.005171 m/s - 0.116126 m/s)
14:07:29 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:29 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:29 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09595020744426727
14:07:29 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:29 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:29 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:29 DEBUG opendrift.models.oceandrift:582: 230 elements penetrated seafloor, lifting up
14:07:29 DEBUG opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
14:07:29 DEBUG opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
14:07:29 DEBUG opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
14:07:29 DEBUG opendrift.models.oceandrift:582: 170 elements penetrated seafloor, lifting up
14:07:29 DEBUG opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
14:07:29 DEBUG opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
14:07:29 DEBUG opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
14:07:29 DEBUG opendrift.models.oceandrift:582: 151 elements penetrated seafloor, lifting up
14:07:29 DEBUG opendrift.models.oceandrift:600: 40 elements reached seafloor, set to bottom
14:07:29 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
14:07:29 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
14:07:29 DEBUG opendrift.models.oceandrift:582: 151 elements penetrated seafloor, lifting up
14:07:29 DEBUG opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
14:07:29 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
14:07:29 DEBUG opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
14:07:29 DEBUG opendrift.models.oceandrift:582: 131 elements penetrated seafloor, lifting up
14:07:29 DEBUG opendrift.models.oceandrift:600: 19 elements reached seafloor, set to bottom
14:07:29 DEBUG opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
14:07:29 DEBUG opendrift.models.sedimentdrift:112: Settling 19 elements at seafloor
14:07:29 DEBUG opendrift.models.oceandrift:582: 146 elements penetrated seafloor, lifting up
14:07:29 DEBUG opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
14:07:29 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
14:07:29 DEBUG opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
14:07:29 DEBUG opendrift.models.oceandrift:582: 134 elements penetrated seafloor, lifting up
14:07:29 DEBUG opendrift.models.oceandrift:600: 17 elements reached seafloor, set to bottom
14:07:29 DEBUG opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
14:07:29 DEBUG opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
14:07:29 DEBUG opendrift.models.oceandrift:582: 125 elements penetrated seafloor, lifting up
14:07:29 DEBUG opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
14:07:29 DEBUG opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
14:07:29 DEBUG opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
14:07:29 DEBUG opendrift.models.oceandrift:582: 122 elements penetrated seafloor, lifting up
14:07:29 DEBUG opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
14:07:29 DEBUG opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
14:07:29 DEBUG opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
14:07:29 DEBUG opendrift.models.oceandrift:582: 139 elements penetrated seafloor, lifting up
14:07:29 DEBUG opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
14:07:29 DEBUG opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
14:07:29 DEBUG opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
14:07:29 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:29 DEBUG opendrift.models.basemodel:2945: 2257 active elements (0 deactivated)
14:07:29 DEBUG opendrift.models.basemodel:1658: to be seeded: 7743, already seeded 2257
14:07:29 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:07:29 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:29 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:29 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:29 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:29 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:29 DEBUG opendrift.models.basemodel:1253: Data needed for 2292 elements
14:07:29 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:29 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 00:00:00 (before)
2023-09-02 01:00:00 (after)
14:07:29 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 00:00:00) in space (linearNDFast)
14:07:29 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:29 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:29 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:29 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:29 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:29 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:29 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.9216 (max)
14:07:29 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:29 DEBUG opendrift.models.basemodel:1527: 2292 active elements
14:07:29 DEBUG opendrift.models.basemodel:1538: 59.099234476995775 <- latitude -> 59.18019823750047
14:07:29 DEBUG opendrift.models.basemodel:1543: 10.942563251796152 <- longitude -> 11.029280676802424
14:07:29 DEBUG opendrift.models.basemodel:1548: -14.09502124786377 <- z -> 0.0
14:07:29 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:29 DEBUG opendrift.models.basemodel:836: Lifting 187 elements to seafloor.
14:07:29 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:29 INFO opendrift.models.basemodel:2882: 2023-09-02 00:56:21.121579 - step 66 of 216 - 2292 active elements (0 deactivated)
14:07:29 DEBUG opendrift.models.basemodel:2888: 7708 elements scheduled.
14:07:29 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:29 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:29 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:29 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:29 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:29 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:29 DEBUG opendrift.models.basemodel:1253: Data needed for 2292 elements
14:07:29 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:29 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:29 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:29 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:29 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:29 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:29 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:29 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:29 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:29 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:29 DEBUG opendrift.models.basemodel:1253: Data needed for 2292 elements
14:07:29 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:29 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 00:00:00 (before)
2023-09-02 01:00:00 (after)
14:07:30 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:30 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:30 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:30 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:30 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:30 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:30 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 23x22x5) for time after (2023-09-02 01:00:00)
14:07:30 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 00:00:00) in space (linearNDFast)
14:07:30 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:30 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 01:00:00) in space (linearNDFast)
14:07:30 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1060 elements, expanding data 1
14:07:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1060 elements, expanding data 1
14:07:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1105 elements, expanding data 1
14:07:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 2
14:07:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1105 elements, expanding data 1
14:07:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 2
14:07:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1105 elements, expanding data 1
14:07:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 2
14:07:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1105 elements, expanding data 1
14:07:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 2
14:07:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1105 elements, expanding data 1
14:07:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 2
14:07:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1684 elements, expanding data 1
14:07:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 439 elements, expanding data 2
14:07:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1684 elements, expanding data 1
14:07:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 439 elements, expanding data 2
14:07:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1684 elements, expanding data 1
14:07:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 439 elements, expanding data 2
14:07:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1684 elements, expanding data 1
14:07:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 439 elements, expanding data 2
14:07:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1684 elements, expanding data 1
14:07:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 439 elements, expanding data 2
14:07:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1060 elements, expanding data 1
14:07:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1060 elements, expanding data 1
14:07:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1060 elements, expanding data 1
14:07:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1060 elements, expanding data 1
14:07:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1060 elements, expanding data 1
14:07:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:30 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 00:00:00, weight 0.06) and
after (2023-09-02 01:00:00, weight 0.94) in time
14:07:30 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.057447301888416 and -58.970729893289494 degrees.
14:07:30 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.057447301888416 and -58.970729893289494 degrees.
14:07:30 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:30 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:30 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:30 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:30 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:30 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:30 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.711487 (min) 1.28384 (max)
14:07:30 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.989132 (min) 0.686643 (max)
14:07:30 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -4.96748e-05 (min) 0.000628364 (max)
14:07:30 DEBUG opendrift.models.basemodel:1524: x_wind: -7.78996 (min) 7.01515 (max)
14:07:30 DEBUG opendrift.models.basemodel:1524: y_wind: -8.00972 (min) 5.24936 (max)
14:07:30 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:30 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:30 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:30 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:30 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:30 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:30 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:30 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.9216 (max)
14:07:30 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:30 DEBUG opendrift.models.basemodel:1527: 2292 active elements
14:07:30 DEBUG opendrift.models.basemodel:1538: 59.099234476995775 <- latitude -> 59.18019823750047
14:07:30 DEBUG opendrift.models.basemodel:1543: 10.942563251796152 <- longitude -> 11.029280676802424
14:07:30 DEBUG opendrift.models.basemodel:1548: -14.09502124786377 <- z -> 0.0
14:07:30 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:30 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:30 DEBUG opendrift.models.physics_methods:1050: min: 0.031780, mean: 2.373989, max: 8.563028
14:07:30 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.031780, mean: 2.373989, max: 8.563028
14:07:30 DEBUG opendrift.models.basemodel:813: 276 elements hit coastline, moving back to water
14:07:30 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:07:30 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:30 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:30 DEBUG opendrift.models.physics_methods:828: Advecting 35 of 2292 elements above 0.100m with wind-sheared ocean current (0.007376 m/s - 0.131764 m/s)
14:07:30 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:30 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:30 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09073537534435272
14:07:30 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:30 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:30 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:30 DEBUG opendrift.models.oceandrift:582: 238 elements penetrated seafloor, lifting up
14:07:30 DEBUG opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
14:07:30 DEBUG opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
14:07:30 DEBUG opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
14:07:30 DEBUG opendrift.models.oceandrift:582: 192 elements penetrated seafloor, lifting up
14:07:30 DEBUG opendrift.models.oceandrift:600: 42 elements reached seafloor, set to bottom
14:07:30 DEBUG opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
14:07:30 DEBUG opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
14:07:30 DEBUG opendrift.models.oceandrift:582: 179 elements penetrated seafloor, lifting up
14:07:30 DEBUG opendrift.models.oceandrift:600: 29 elements reached seafloor, set to bottom
14:07:30 DEBUG opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
14:07:30 DEBUG opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
14:07:30 DEBUG opendrift.models.oceandrift:582: 146 elements penetrated seafloor, lifting up
14:07:30 DEBUG opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
14:07:30 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
14:07:30 DEBUG opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
14:07:30 DEBUG opendrift.models.oceandrift:582: 168 elements penetrated seafloor, lifting up
14:07:30 DEBUG opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
14:07:30 DEBUG opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
14:07:30 DEBUG opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
14:07:30 DEBUG opendrift.models.oceandrift:582: 127 elements penetrated seafloor, lifting up
14:07:30 DEBUG opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
14:07:30 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
14:07:30 DEBUG opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
14:07:30 DEBUG opendrift.models.oceandrift:582: 143 elements penetrated seafloor, lifting up
14:07:30 DEBUG opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
14:07:30 DEBUG opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
14:07:30 DEBUG opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
14:07:30 DEBUG opendrift.models.oceandrift:582: 144 elements penetrated seafloor, lifting up
14:07:30 DEBUG opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
14:07:30 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
14:07:30 DEBUG opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
14:07:30 DEBUG opendrift.models.oceandrift:582: 124 elements penetrated seafloor, lifting up
14:07:30 DEBUG opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
14:07:30 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
14:07:30 DEBUG opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
14:07:30 DEBUG opendrift.models.oceandrift:582: 129 elements penetrated seafloor, lifting up
14:07:30 DEBUG opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
14:07:30 DEBUG opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
14:07:30 DEBUG opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
14:07:30 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:30 DEBUG opendrift.models.basemodel:2945: 2292 active elements (0 deactivated)
14:07:30 DEBUG opendrift.models.basemodel:1658: to be seeded: 7708, already seeded 2292
14:07:30 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:07:30 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:30 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:30 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:30 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:30 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:30 DEBUG opendrift.models.basemodel:1253: Data needed for 2327 elements
14:07:30 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:30 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 01:00:00 (before)
2023-09-02 02:00:00 (after)
14:07:30 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 01:00:00) in space (linearNDFast)
14:07:30 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:30 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:30 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:30 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:30 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:30 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:30 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.8175 (max)
14:07:30 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:30 DEBUG opendrift.models.basemodel:1527: 2327 active elements
14:07:30 DEBUG opendrift.models.basemodel:1538: 59.09898129469228 <- latitude -> 59.1802178629323
14:07:30 DEBUG opendrift.models.basemodel:1543: 10.943829045133864 <- longitude -> 11.028676814027339
14:07:30 DEBUG opendrift.models.basemodel:1548: -14.09502124786377 <- z -> 0.0
14:07:30 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:30 DEBUG opendrift.models.basemodel:836: Lifting 192 elements to seafloor.
14:07:30 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:30 INFO opendrift.models.basemodel:2882: 2023-09-02 01:06:21.121579 - step 67 of 216 - 2327 active elements (0 deactivated)
14:07:30 DEBUG opendrift.models.basemodel:2888: 7673 elements scheduled.
14:07:30 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:30 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:30 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:30 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:30 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:30 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:30 DEBUG opendrift.models.basemodel:1253: Data needed for 2327 elements
14:07:30 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:30 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:30 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:30 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:30 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:30 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:30 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:30 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:30 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:30 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:30 DEBUG opendrift.models.basemodel:1253: Data needed for 2327 elements
14:07:30 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:30 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 01:00:00 (before)
2023-09-02 02:00:00 (after)
14:07:31 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:31 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:31 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:31 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:31 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:31 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:31 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 23x23x5) for time after (2023-09-02 02:00:00)
14:07:31 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 01:00:00) in space (linearNDFast)
14:07:31 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:31 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 02:00:00) in space (linearNDFast)
14:07:31 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1098 elements, expanding data 1
14:07:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:07:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1098 elements, expanding data 1
14:07:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:07:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1135 elements, expanding data 1
14:07:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 2
14:07:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1135 elements, expanding data 1
14:07:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 2
14:07:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1135 elements, expanding data 1
14:07:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 2
14:07:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1135 elements, expanding data 1
14:07:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 2
14:07:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1135 elements, expanding data 1
14:07:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 2
14:07:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1722 elements, expanding data 1
14:07:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 446 elements, expanding data 2
14:07:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1722 elements, expanding data 1
14:07:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 446 elements, expanding data 2
14:07:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1722 elements, expanding data 1
14:07:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 446 elements, expanding data 2
14:07:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1722 elements, expanding data 1
14:07:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 446 elements, expanding data 2
14:07:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1722 elements, expanding data 1
14:07:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 446 elements, expanding data 2
14:07:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1098 elements, expanding data 1
14:07:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:07:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1098 elements, expanding data 1
14:07:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:07:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1098 elements, expanding data 1
14:07:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:07:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1098 elements, expanding data 1
14:07:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:07:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1098 elements, expanding data 1
14:07:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:07:31 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 01:00:00, weight 0.89) and
after (2023-09-02 02:00:00, weight 0.11) in time
14:07:31 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05618150866717 and -58.97133373962265 degrees.
14:07:31 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05618150866717 and -58.97133373962265 degrees.
14:07:31 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:31 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:31 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:31 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:31 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:31 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:31 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.702911 (min) 1.22757 (max)
14:07:31 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.08368 (min) 0.706682 (max)
14:07:31 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -1.06815e-05 (min) 0.000573918 (max)
14:07:31 DEBUG opendrift.models.basemodel:1524: x_wind: -6.77299 (min) 7.55708 (max)
14:07:31 DEBUG opendrift.models.basemodel:1524: y_wind: -7.97369 (min) 4.7917 (max)
14:07:31 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:31 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:31 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:31 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:31 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:31 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:31 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:31 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.8175 (max)
14:07:31 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:31 DEBUG opendrift.models.basemodel:1527: 2327 active elements
14:07:31 DEBUG opendrift.models.basemodel:1538: 59.09898129469228 <- latitude -> 59.1802178629323
14:07:31 DEBUG opendrift.models.basemodel:1543: 10.943829045133864 <- longitude -> 11.028676814027339
14:07:31 DEBUG opendrift.models.basemodel:1548: -14.09502124786377 <- z -> 0.0
14:07:31 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:31 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:31 DEBUG opendrift.models.physics_methods:1050: min: 0.030060, mean: 2.440403, max: 6.930389
14:07:31 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.030060, mean: 2.440403, max: 6.930389
14:07:31 DEBUG opendrift.models.basemodel:813: 263 elements hit coastline, moving back to water
14:07:31 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:07:31 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:31 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:31 DEBUG opendrift.models.physics_methods:828: Advecting 35 of 2327 elements above 0.100m with wind-sheared ocean current (0.010001 m/s - 0.129004 m/s)
14:07:31 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:31 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:31 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.05943569683058738
14:07:31 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:31 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:31 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:31 DEBUG opendrift.models.oceandrift:582: 243 elements penetrated seafloor, lifting up
14:07:31 DEBUG opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
14:07:31 DEBUG opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
14:07:31 DEBUG opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
14:07:31 DEBUG opendrift.models.oceandrift:582: 180 elements penetrated seafloor, lifting up
14:07:31 DEBUG opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
14:07:31 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
14:07:31 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
14:07:31 DEBUG opendrift.models.oceandrift:582: 158 elements penetrated seafloor, lifting up
14:07:31 DEBUG opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
14:07:31 DEBUG opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
14:07:31 DEBUG opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
14:07:31 DEBUG opendrift.models.oceandrift:582: 156 elements penetrated seafloor, lifting up
14:07:31 DEBUG opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
14:07:31 DEBUG opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
14:07:31 DEBUG opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
14:07:31 DEBUG opendrift.models.oceandrift:582: 171 elements penetrated seafloor, lifting up
14:07:31 DEBUG opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
14:07:31 DEBUG opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
14:07:31 DEBUG opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
14:07:31 DEBUG opendrift.models.oceandrift:582: 149 elements penetrated seafloor, lifting up
14:07:31 DEBUG opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
14:07:31 DEBUG opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
14:07:31 DEBUG opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
14:07:31 DEBUG opendrift.models.oceandrift:582: 148 elements penetrated seafloor, lifting up
14:07:31 DEBUG opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
14:07:31 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
14:07:31 DEBUG opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
14:07:31 DEBUG opendrift.models.oceandrift:582: 158 elements penetrated seafloor, lifting up
14:07:31 DEBUG opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
14:07:31 DEBUG opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
14:07:31 DEBUG opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
14:07:31 DEBUG opendrift.models.oceandrift:582: 120 elements penetrated seafloor, lifting up
14:07:31 DEBUG opendrift.models.oceandrift:600: 29 elements reached seafloor, set to bottom
14:07:31 DEBUG opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
14:07:31 DEBUG opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
14:07:31 DEBUG opendrift.models.oceandrift:582: 135 elements penetrated seafloor, lifting up
14:07:31 DEBUG opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
14:07:31 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
14:07:31 DEBUG opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
14:07:31 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:31 DEBUG opendrift.models.basemodel:2945: 2327 active elements (0 deactivated)
14:07:31 DEBUG opendrift.models.basemodel:1658: to be seeded: 7673, already seeded 2327
14:07:31 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:07:31 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:31 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:31 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:31 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:31 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:31 DEBUG opendrift.models.basemodel:1253: Data needed for 2361 elements
14:07:31 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:31 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 01:00:00 (before)
2023-09-02 02:00:00 (after)
14:07:31 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 01:00:00) in space (linearNDFast)
14:07:31 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:31 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:31 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:31 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:31 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:31 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:31 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.7788 (max)
14:07:31 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:31 DEBUG opendrift.models.basemodel:1527: 2361 active elements
14:07:31 DEBUG opendrift.models.basemodel:1538: 59.10014689760004 <- latitude -> 59.18222655991923
14:07:31 DEBUG opendrift.models.basemodel:1543: 10.942353083082104 <- longitude -> 11.028676814027339
14:07:31 DEBUG opendrift.models.basemodel:1548: -14.09502124786377 <- z -> 0.0
14:07:31 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:31 DEBUG opendrift.models.basemodel:836: Lifting 199 elements to seafloor.
14:07:31 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:31 INFO opendrift.models.basemodel:2882: 2023-09-02 01:16:21.121579 - step 68 of 216 - 2361 active elements (0 deactivated)
14:07:31 DEBUG opendrift.models.basemodel:2888: 7639 elements scheduled.
14:07:31 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:31 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:31 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:31 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:31 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:31 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:31 DEBUG opendrift.models.basemodel:1253: Data needed for 2361 elements
14:07:31 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:31 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:31 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:31 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:31 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:31 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:31 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:31 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:31 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:31 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:31 DEBUG opendrift.models.basemodel:1253: Data needed for 2361 elements
14:07:31 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:31 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 01:00:00 (before)
2023-09-02 02:00:00 (after)
14:07:32 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:32 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:32 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:32 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:32 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:32 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:32 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 23x23x5) for time after (2023-09-02 02:00:00)
14:07:32 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 01:00:00) in space (linearNDFast)
14:07:32 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:32 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 02:00:00) in space (linearNDFast)
14:07:32 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1113 elements, expanding data 1
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1113 elements, expanding data 1
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1155 elements, expanding data 1
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 2
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1155 elements, expanding data 1
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 2
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1155 elements, expanding data 1
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 2
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1155 elements, expanding data 1
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 2
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1155 elements, expanding data 1
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 2
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1724 elements, expanding data 1
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 459 elements, expanding data 2
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1724 elements, expanding data 1
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 459 elements, expanding data 2
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1724 elements, expanding data 1
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 459 elements, expanding data 2
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1724 elements, expanding data 1
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 459 elements, expanding data 2
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1724 elements, expanding data 1
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 459 elements, expanding data 2
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1113 elements, expanding data 1
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1113 elements, expanding data 1
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1113 elements, expanding data 1
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1113 elements, expanding data 1
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1113 elements, expanding data 1
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:07:32 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 01:00:00, weight 0.73) and
after (2023-09-02 02:00:00, weight 0.27) in time
14:07:32 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05765747966097 and -58.97133373962265 degrees.
14:07:32 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05765747966097 and -58.97133373962265 degrees.
14:07:32 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:32 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:32 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:32 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:32 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:32 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:32 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.645161 (min) 1.12344 (max)
14:07:32 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.14709 (min) 0.69996 (max)
14:07:32 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -2.86048e-06 (min) 0.000676397 (max)
14:07:32 DEBUG opendrift.models.basemodel:1524: x_wind: -6.40309 (min) 6.20234 (max)
14:07:32 DEBUG opendrift.models.basemodel:1524: y_wind: -8.64563 (min) 5.51539 (max)
14:07:32 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:32 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:32 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:32 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:32 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:32 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:32 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:32 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.7788 (max)
14:07:32 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:32 DEBUG opendrift.models.basemodel:1527: 2361 active elements
14:07:32 DEBUG opendrift.models.basemodel:1538: 59.10014689760004 <- latitude -> 59.18222655991923
14:07:32 DEBUG opendrift.models.basemodel:1543: 10.942353083082104 <- longitude -> 11.028676814027339
14:07:32 DEBUG opendrift.models.basemodel:1548: -14.09502124786377 <- z -> 0.0
14:07:32 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:32 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:32 DEBUG opendrift.models.physics_methods:1050: min: 0.039407, mean: 2.502966, max: 7.579060
14:07:32 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.039407, mean: 2.502966, max: 7.579060
14:07:32 DEBUG opendrift.models.basemodel:813: 256 elements hit coastline, moving back to water
14:07:32 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
14:07:32 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:32 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:32 DEBUG opendrift.models.physics_methods:828: Advecting 36 of 2361 elements above 0.100m with wind-sheared ocean current (0.002826 m/s - 0.155328 m/s)
14:07:32 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:32 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:32 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07108171909935951
14:07:32 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:32 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:32 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:32 DEBUG opendrift.models.oceandrift:582: 280 elements penetrated seafloor, lifting up
14:07:32 DEBUG opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
14:07:32 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
14:07:32 DEBUG opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
14:07:32 DEBUG opendrift.models.oceandrift:582: 177 elements penetrated seafloor, lifting up
14:07:32 DEBUG opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
14:07:32 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
14:07:32 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
14:07:32 DEBUG opendrift.models.oceandrift:582: 159 elements penetrated seafloor, lifting up
14:07:32 DEBUG opendrift.models.oceandrift:600: 19 elements reached seafloor, set to bottom
14:07:32 DEBUG opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
14:07:32 DEBUG opendrift.models.sedimentdrift:112: Settling 19 elements at seafloor
14:07:32 DEBUG opendrift.models.oceandrift:582: 171 elements penetrated seafloor, lifting up
14:07:32 DEBUG opendrift.models.oceandrift:600: 29 elements reached seafloor, set to bottom
14:07:32 DEBUG opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
14:07:32 DEBUG opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
14:07:32 DEBUG opendrift.models.oceandrift:582: 165 elements penetrated seafloor, lifting up
14:07:32 DEBUG opendrift.models.oceandrift:600: 27 elements reached seafloor, set to bottom
14:07:32 DEBUG opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
14:07:32 DEBUG opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
14:07:32 DEBUG opendrift.models.oceandrift:582: 138 elements penetrated seafloor, lifting up
14:07:32 DEBUG opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
14:07:32 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
14:07:32 DEBUG opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
14:07:32 DEBUG opendrift.models.oceandrift:582: 145 elements penetrated seafloor, lifting up
14:07:32 DEBUG opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
14:07:32 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
14:07:32 DEBUG opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
14:07:32 DEBUG opendrift.models.oceandrift:582: 165 elements penetrated seafloor, lifting up
14:07:32 DEBUG opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
14:07:32 DEBUG opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
14:07:32 DEBUG opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
14:07:32 DEBUG opendrift.models.oceandrift:582: 120 elements penetrated seafloor, lifting up
14:07:32 DEBUG opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
14:07:32 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
14:07:32 DEBUG opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
14:07:32 DEBUG opendrift.models.oceandrift:582: 140 elements penetrated seafloor, lifting up
14:07:32 DEBUG opendrift.models.oceandrift:600: 29 elements reached seafloor, set to bottom
14:07:32 DEBUG opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
14:07:32 DEBUG opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
14:07:32 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:32 DEBUG opendrift.models.basemodel:2945: 2361 active elements (0 deactivated)
14:07:32 DEBUG opendrift.models.basemodel:1658: to be seeded: 7639, already seeded 2361
14:07:32 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:07:32 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:32 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:32 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:32 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:32 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:32 DEBUG opendrift.models.basemodel:1253: Data needed for 2396 elements
14:07:32 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:32 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 01:00:00 (before)
2023-09-02 02:00:00 (after)
14:07:32 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 01:00:00) in space (linearNDFast)
14:07:32 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:32 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:32 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:32 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:32 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:32 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:32 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.6223 (max)
14:07:32 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:32 DEBUG opendrift.models.basemodel:1527: 2396 active elements
14:07:32 DEBUG opendrift.models.basemodel:1538: 59.099866263984275 <- latitude -> 59.18145127643501
14:07:32 DEBUG opendrift.models.basemodel:1543: 10.940896703690175 <- longitude -> 11.027262726820522
14:07:32 DEBUG opendrift.models.basemodel:1548: -14.08502124786377 <- z -> 0.0
14:07:32 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:32 DEBUG opendrift.models.basemodel:836: Lifting 203 elements to seafloor.
14:07:32 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:32 INFO opendrift.models.basemodel:2882: 2023-09-02 01:26:21.121579 - step 69 of 216 - 2396 active elements (0 deactivated)
14:07:32 DEBUG opendrift.models.basemodel:2888: 7604 elements scheduled.
14:07:32 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:32 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:32 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:32 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:32 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:32 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:32 DEBUG opendrift.models.basemodel:1253: Data needed for 2396 elements
14:07:32 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:32 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:32 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:32 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:32 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:32 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:32 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:32 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:32 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:32 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:32 DEBUG opendrift.models.basemodel:1253: Data needed for 2396 elements
14:07:32 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:32 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 01:00:00 (before)
2023-09-02 02:00:00 (after)
14:07:32 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:32 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:32 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:32 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:32 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:32 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:32 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 23x24x5) for time after (2023-09-02 02:00:00)
14:07:32 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 01:00:00) in space (linearNDFast)
14:07:32 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:32 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 02:00:00) in space (linearNDFast)
14:07:32 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1160 elements, expanding data 1
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1160 elements, expanding data 1
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1201 elements, expanding data 1
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 2
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1201 elements, expanding data 1
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 2
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1201 elements, expanding data 1
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 2
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1201 elements, expanding data 1
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 2
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1201 elements, expanding data 1
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 2
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1760 elements, expanding data 1
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 475 elements, expanding data 2
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1760 elements, expanding data 1
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 475 elements, expanding data 2
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1760 elements, expanding data 1
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 475 elements, expanding data 2
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1760 elements, expanding data 1
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 475 elements, expanding data 2
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1760 elements, expanding data 1
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 475 elements, expanding data 2
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1160 elements, expanding data 1
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1160 elements, expanding data 1
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1160 elements, expanding data 1
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1160 elements, expanding data 1
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1160 elements, expanding data 1
14:07:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:07:32 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 01:00:00, weight 0.56) and
after (2023-09-02 02:00:00, weight 0.44) in time
14:07:32 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05911386441233 and -58.972747834655735 degrees.
14:07:33 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05911386441233 and -58.972747834655735 degrees.
14:07:33 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:33 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:33 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:33 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:33 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:33 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:33 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.851445 (min) 1.21308 (max)
14:07:33 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.02229 (min) 0.776979 (max)
14:07:33 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: 1.27203e-06 (min) 0.000698306 (max)
14:07:33 DEBUG opendrift.models.basemodel:1524: x_wind: -7.16787 (min) 5.88052 (max)
14:07:33 DEBUG opendrift.models.basemodel:1524: y_wind: -7.83355 (min) 6.25212 (max)
14:07:33 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:33 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:33 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:33 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:33 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:33 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:33 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:33 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.6223 (max)
14:07:33 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:33 DEBUG opendrift.models.basemodel:1527: 2396 active elements
14:07:33 DEBUG opendrift.models.basemodel:1538: 59.099866263984275 <- latitude -> 59.18145127643501
14:07:33 DEBUG opendrift.models.basemodel:1543: 10.940896703690175 <- longitude -> 11.027262726820522
14:07:33 DEBUG opendrift.models.basemodel:1548: -14.08502124786377 <- z -> 0.0
14:07:33 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:33 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:33 DEBUG opendrift.models.physics_methods:1050: min: 0.089933, mean: 2.564015, max: 8.132361
14:07:33 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.089933, mean: 2.564015, max: 8.132361
14:07:33 DEBUG opendrift.models.basemodel:813: 251 elements hit coastline, moving back to water
14:07:33 DEBUG opendrift.models.basemodel:836: Lifting 76 elements to seafloor.
14:07:33 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:33 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:33 DEBUG opendrift.models.physics_methods:828: Advecting 37 of 2396 elements above 0.100m with wind-sheared ocean current (0.011354 m/s - 0.117254 m/s)
14:07:33 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:33 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:33 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08183842700775146
14:07:33 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:33 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:33 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:33 DEBUG opendrift.models.oceandrift:582: 254 elements penetrated seafloor, lifting up
14:07:33 DEBUG opendrift.models.oceandrift:600: 29 elements reached seafloor, set to bottom
14:07:33 DEBUG opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
14:07:33 DEBUG opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
14:07:33 DEBUG opendrift.models.oceandrift:582: 194 elements penetrated seafloor, lifting up
14:07:33 DEBUG opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
14:07:33 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
14:07:33 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
14:07:33 DEBUG opendrift.models.oceandrift:582: 171 elements penetrated seafloor, lifting up
14:07:33 DEBUG opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
14:07:33 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
14:07:33 DEBUG opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
14:07:33 DEBUG opendrift.models.oceandrift:582: 174 elements penetrated seafloor, lifting up
14:07:33 DEBUG opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
14:07:33 DEBUG opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
14:07:33 DEBUG opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
14:07:33 DEBUG opendrift.models.oceandrift:582: 153 elements penetrated seafloor, lifting up
14:07:33 DEBUG opendrift.models.oceandrift:600: 23 elements reached seafloor, set to bottom
14:07:33 DEBUG opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
14:07:33 DEBUG opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
14:07:33 DEBUG opendrift.models.oceandrift:582: 160 elements penetrated seafloor, lifting up
14:07:33 DEBUG opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
14:07:33 DEBUG opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
14:07:33 DEBUG opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
14:07:33 DEBUG opendrift.models.oceandrift:582: 161 elements penetrated seafloor, lifting up
14:07:33 DEBUG opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
14:07:33 DEBUG opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
14:07:33 DEBUG opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
14:07:33 DEBUG opendrift.models.oceandrift:582: 150 elements penetrated seafloor, lifting up
14:07:33 DEBUG opendrift.models.oceandrift:600: 23 elements reached seafloor, set to bottom
14:07:33 DEBUG opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
14:07:33 DEBUG opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
14:07:33 DEBUG opendrift.models.oceandrift:582: 137 elements penetrated seafloor, lifting up
14:07:33 DEBUG opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
14:07:33 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
14:07:33 DEBUG opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
14:07:33 DEBUG opendrift.models.oceandrift:582: 141 elements penetrated seafloor, lifting up
14:07:33 DEBUG opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
14:07:33 DEBUG opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
14:07:33 DEBUG opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
14:07:33 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:33 DEBUG opendrift.models.basemodel:2945: 2396 active elements (0 deactivated)
14:07:33 DEBUG opendrift.models.basemodel:1658: to be seeded: 7604, already seeded 2396
14:07:33 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:07:33 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:33 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:33 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:33 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:33 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:33 DEBUG opendrift.models.basemodel:1253: Data needed for 2431 elements
14:07:33 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:33 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 01:00:00 (before)
2023-09-02 02:00:00 (after)
14:07:33 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 01:00:00) in space (linearNDFast)
14:07:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:33 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:33 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:33 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:33 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:33 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:33 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.5338 (max)
14:07:33 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:33 DEBUG opendrift.models.basemodel:1527: 2431 active elements
14:07:33 DEBUG opendrift.models.basemodel:1538: 59.099184847234056 <- latitude -> 59.18203743824511
14:07:33 DEBUG opendrift.models.basemodel:1543: 10.942168539319873 <- longitude -> 11.026932650311489
14:07:33 DEBUG opendrift.models.basemodel:1548: -14.065752278175706 <- z -> 0.0
14:07:33 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:33 DEBUG opendrift.models.basemodel:836: Lifting 214 elements to seafloor.
14:07:33 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:33 INFO opendrift.models.basemodel:2882: 2023-09-02 01:36:21.121579 - step 70 of 216 - 2431 active elements (0 deactivated)
14:07:33 DEBUG opendrift.models.basemodel:2888: 7569 elements scheduled.
14:07:33 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:33 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:33 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:33 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:33 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:33 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:33 DEBUG opendrift.models.basemodel:1253: Data needed for 2431 elements
14:07:33 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:33 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:33 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:33 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:33 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:33 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:33 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:33 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:33 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:33 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:33 DEBUG opendrift.models.basemodel:1253: Data needed for 2431 elements
14:07:33 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:33 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 01:00:00 (before)
2023-09-02 02:00:00 (after)
14:07:33 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:33 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:33 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:33 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:33 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:33 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:33 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 23x24x5) for time after (2023-09-02 02:00:00)
14:07:33 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 01:00:00) in space (linearNDFast)
14:07:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:33 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 02:00:00) in space (linearNDFast)
14:07:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1164 elements, expanding data 1
14:07:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1164 elements, expanding data 1
14:07:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1201 elements, expanding data 1
14:07:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 2
14:07:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1201 elements, expanding data 1
14:07:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 2
14:07:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1201 elements, expanding data 1
14:07:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 2
14:07:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1201 elements, expanding data 1
14:07:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 2
14:07:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1201 elements, expanding data 1
14:07:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 2
14:07:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1795 elements, expanding data 1
14:07:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 509 elements, expanding data 2
14:07:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1795 elements, expanding data 1
14:07:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 509 elements, expanding data 2
14:07:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1795 elements, expanding data 1
14:07:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 509 elements, expanding data 2
14:07:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1795 elements, expanding data 1
14:07:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 509 elements, expanding data 2
14:07:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1795 elements, expanding data 1
14:07:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 509 elements, expanding data 2
14:07:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1164 elements, expanding data 1
14:07:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1164 elements, expanding data 1
14:07:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1164 elements, expanding data 1
14:07:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1164 elements, expanding data 1
14:07:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1164 elements, expanding data 1
14:07:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:33 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 01:00:00, weight 0.39) and
after (2023-09-02 02:00:00, weight 0.61) in time
14:07:33 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.057842011177925 and -58.97307789246747 degrees.
14:07:33 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.057842011177925 and -58.97307789246747 degrees.
14:07:33 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:33 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:33 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:33 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:33 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:33 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:33 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.80272 (min) 1.11927 (max)
14:07:33 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.13812 (min) 0.776881 (max)
14:07:33 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -1.49247e-05 (min) 0.000735132 (max)
14:07:33 DEBUG opendrift.models.basemodel:1524: x_wind: -9.50984 (min) 6.14507 (max)
14:07:33 DEBUG opendrift.models.basemodel:1524: y_wind: -10.0035 (min) 6.33757 (max)
14:07:33 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:33 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:33 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:33 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:33 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:33 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:33 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:33 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.5338 (max)
14:07:33 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:33 DEBUG opendrift.models.basemodel:1527: 2431 active elements
14:07:33 DEBUG opendrift.models.basemodel:1538: 59.099184847234056 <- latitude -> 59.18203743824511
14:07:33 DEBUG opendrift.models.basemodel:1543: 10.942168539319873 <- longitude -> 11.026932650311489
14:07:33 DEBUG opendrift.models.basemodel:1548: -13.897510528564453 <- z -> 0.0
14:07:33 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:33 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:33 DEBUG opendrift.models.physics_methods:1050: min: 0.061204, mean: 2.615704, max: 8.616590
14:07:33 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.061204, mean: 2.615704, max: 8.616590
14:07:33 DEBUG opendrift.models.basemodel:813: 287 elements hit coastline, moving back to water
14:07:33 DEBUG opendrift.models.basemodel:836: Lifting 75 elements to seafloor.
14:07:33 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:33 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:33 DEBUG opendrift.models.physics_methods:828: Advecting 37 of 2431 elements above 0.100m with wind-sheared ocean current (0.003818 m/s - 0.117042 m/s)
14:07:33 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:33 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:33 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09187396149690627
14:07:33 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:33 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:33 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:33 DEBUG opendrift.models.oceandrift:582: 253 elements penetrated seafloor, lifting up
14:07:33 DEBUG opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
14:07:33 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
14:07:33 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
14:07:33 DEBUG opendrift.models.oceandrift:582: 198 elements penetrated seafloor, lifting up
14:07:33 DEBUG opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
14:07:33 DEBUG opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
14:07:33 DEBUG opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
14:07:33 DEBUG opendrift.models.oceandrift:582: 206 elements penetrated seafloor, lifting up
14:07:33 DEBUG opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
14:07:33 DEBUG opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
14:07:33 DEBUG opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
14:07:33 DEBUG opendrift.models.oceandrift:582: 176 elements penetrated seafloor, lifting up
14:07:33 DEBUG opendrift.models.oceandrift:600: 27 elements reached seafloor, set to bottom
14:07:33 DEBUG opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
14:07:33 DEBUG opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
14:07:33 DEBUG opendrift.models.oceandrift:582: 175 elements penetrated seafloor, lifting up
14:07:33 DEBUG opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
14:07:33 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
14:07:33 DEBUG opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
14:07:33 DEBUG opendrift.models.oceandrift:582: 149 elements penetrated seafloor, lifting up
14:07:33 DEBUG opendrift.models.oceandrift:600: 20 elements reached seafloor, set to bottom
14:07:33 DEBUG opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
14:07:33 DEBUG opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
14:07:33 DEBUG opendrift.models.oceandrift:582: 150 elements penetrated seafloor, lifting up
14:07:33 DEBUG opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
14:07:33 DEBUG opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
14:07:33 DEBUG opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
14:07:33 DEBUG opendrift.models.oceandrift:582: 141 elements penetrated seafloor, lifting up
14:07:33 DEBUG opendrift.models.oceandrift:600: 29 elements reached seafloor, set to bottom
14:07:33 DEBUG opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
14:07:33 DEBUG opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
14:07:33 DEBUG opendrift.models.oceandrift:582: 136 elements penetrated seafloor, lifting up
14:07:33 DEBUG opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
14:07:33 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
14:07:33 DEBUG opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
14:07:33 DEBUG opendrift.models.oceandrift:582: 125 elements penetrated seafloor, lifting up
14:07:33 DEBUG opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
14:07:33 DEBUG opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
14:07:33 DEBUG opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
14:07:33 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:33 DEBUG opendrift.models.basemodel:2945: 2431 active elements (0 deactivated)
14:07:33 DEBUG opendrift.models.basemodel:1658: to be seeded: 7569, already seeded 2431
14:07:33 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:07:33 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:33 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:33 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:33 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:33 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:33 DEBUG opendrift.models.basemodel:1253: Data needed for 2466 elements
14:07:33 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:33 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 01:00:00 (before)
2023-09-02 02:00:00 (after)
14:07:33 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 01:00:00) in space (linearNDFast)
14:07:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:33 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:33 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:33 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:33 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:33 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:33 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.614 (max)
14:07:33 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:33 DEBUG opendrift.models.basemodel:1527: 2466 active elements
14:07:33 DEBUG opendrift.models.basemodel:1538: 59.09914072875836 <- latitude -> 59.182710937741305
14:07:33 DEBUG opendrift.models.basemodel:1543: 10.940886899770968 <- longitude -> 11.026041604729379
14:07:33 DEBUG opendrift.models.basemodel:1548: -14.143186569213867 <- z -> 0.0
14:07:33 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:33 DEBUG opendrift.models.basemodel:836: Lifting 199 elements to seafloor.
14:07:33 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:33 INFO opendrift.models.basemodel:2882: 2023-09-02 01:46:21.121579 - step 71 of 216 - 2466 active elements (0 deactivated)
14:07:33 DEBUG opendrift.models.basemodel:2888: 7534 elements scheduled.
14:07:33 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:33 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:33 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:33 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:33 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:33 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:33 DEBUG opendrift.models.basemodel:1253: Data needed for 2466 elements
14:07:33 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:33 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:33 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:33 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:33 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:33 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:33 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:33 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:33 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:33 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:33 DEBUG opendrift.models.basemodel:1253: Data needed for 2466 elements
14:07:33 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:33 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 01:00:00 (before)
2023-09-02 02:00:00 (after)
14:07:34 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:34 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:34 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:34 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:34 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:34 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:34 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 23x24x5) for time after (2023-09-02 02:00:00)
14:07:34 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 01:00:00) in space (linearNDFast)
14:07:34 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:34 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 02:00:00) in space (linearNDFast)
14:07:34 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1193 elements, expanding data 1
14:07:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1193 elements, expanding data 1
14:07:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1238 elements, expanding data 1
14:07:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 80 elements, expanding data 2
14:07:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1238 elements, expanding data 1
14:07:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 80 elements, expanding data 2
14:07:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1238 elements, expanding data 1
14:07:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 80 elements, expanding data 2
14:07:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1238 elements, expanding data 1
14:07:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 80 elements, expanding data 2
14:07:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1238 elements, expanding data 1
14:07:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 80 elements, expanding data 2
14:07:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1828 elements, expanding data 1
14:07:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 544 elements, expanding data 2
14:07:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1828 elements, expanding data 1
14:07:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 544 elements, expanding data 2
14:07:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1828 elements, expanding data 1
14:07:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 544 elements, expanding data 2
14:07:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1828 elements, expanding data 1
14:07:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 544 elements, expanding data 2
14:07:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1828 elements, expanding data 1
14:07:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 544 elements, expanding data 2
14:07:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1193 elements, expanding data 1
14:07:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1193 elements, expanding data 1
14:07:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1193 elements, expanding data 1
14:07:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1193 elements, expanding data 1
14:07:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1193 elements, expanding data 1
14:07:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:34 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 01:00:00, weight 0.23) and
after (2023-09-02 02:00:00, weight 0.77) in time
14:07:34 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05912365516227 and -58.97396896852284 degrees.
14:07:34 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05912365516227 and -58.97396896852284 degrees.
14:07:34 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:34 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:34 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:34 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:34 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:34 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:34 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.79409 (min) 1.15348 (max)
14:07:34 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.09936 (min) 0.847178 (max)
14:07:34 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -2.06901e-05 (min) 0.00064861 (max)
14:07:34 DEBUG opendrift.models.basemodel:1524: x_wind: -6.93876 (min) 6.5397 (max)
14:07:34 DEBUG opendrift.models.basemodel:1524: y_wind: -10.2775 (min) 4.44904 (max)
14:07:34 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:34 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:34 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:34 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:34 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:34 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:34 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:34 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.614 (max)
14:07:34 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:34 DEBUG opendrift.models.basemodel:1527: 2466 active elements
14:07:34 DEBUG opendrift.models.basemodel:1538: 59.09914072875836 <- latitude -> 59.182710937741305
14:07:34 DEBUG opendrift.models.basemodel:1543: 10.940886899770968 <- longitude -> 11.026041604729379
14:07:34 DEBUG opendrift.models.basemodel:1548: -14.143186569213867 <- z -> 0.0
14:07:34 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:34 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:34 DEBUG opendrift.models.physics_methods:1050: min: 0.010713, mean: 2.761881, max: 8.982574
14:07:34 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.010713, mean: 2.761881, max: 8.982574
14:07:34 DEBUG opendrift.models.basemodel:813: 311 elements hit coastline, moving back to water
14:07:34 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
14:07:34 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:34 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:34 DEBUG opendrift.models.physics_methods:828: Advecting 37 of 2466 elements above 0.100m with wind-sheared ocean current (0.001466 m/s - 0.123080 m/s)
14:07:34 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:34 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:34 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09984394980485915
14:07:34 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:34 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:34 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:34 DEBUG opendrift.models.oceandrift:582: 304 elements penetrated seafloor, lifting up
14:07:34 DEBUG opendrift.models.oceandrift:600: 36 elements reached seafloor, set to bottom
14:07:34 DEBUG opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
14:07:34 DEBUG opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
14:07:34 DEBUG opendrift.models.oceandrift:582: 208 elements penetrated seafloor, lifting up
14:07:34 DEBUG opendrift.models.oceandrift:600: 40 elements reached seafloor, set to bottom
14:07:34 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
14:07:34 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
14:07:34 DEBUG opendrift.models.oceandrift:582: 190 elements penetrated seafloor, lifting up
14:07:34 DEBUG opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
14:07:34 DEBUG opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
14:07:34 DEBUG opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
14:07:34 DEBUG opendrift.models.oceandrift:582: 207 elements penetrated seafloor, lifting up
14:07:34 DEBUG opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
14:07:34 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
14:07:34 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
14:07:34 DEBUG opendrift.models.oceandrift:582: 189 elements penetrated seafloor, lifting up
14:07:34 DEBUG opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
14:07:34 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
14:07:34 DEBUG opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
14:07:34 DEBUG opendrift.models.oceandrift:582: 165 elements penetrated seafloor, lifting up
14:07:34 DEBUG opendrift.models.oceandrift:600: 29 elements reached seafloor, set to bottom
14:07:34 DEBUG opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
14:07:34 DEBUG opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
14:07:34 DEBUG opendrift.models.oceandrift:582: 167 elements penetrated seafloor, lifting up
14:07:34 DEBUG opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
14:07:34 DEBUG opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
14:07:34 DEBUG opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
14:07:34 DEBUG opendrift.models.oceandrift:582: 163 elements penetrated seafloor, lifting up
14:07:34 DEBUG opendrift.models.oceandrift:600: 36 elements reached seafloor, set to bottom
14:07:34 DEBUG opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
14:07:34 DEBUG opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
14:07:34 DEBUG opendrift.models.oceandrift:582: 129 elements penetrated seafloor, lifting up
14:07:34 DEBUG opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
14:07:34 DEBUG opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
14:07:34 DEBUG opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
14:07:34 DEBUG opendrift.models.oceandrift:582: 119 elements penetrated seafloor, lifting up
14:07:34 DEBUG opendrift.models.oceandrift:600: 27 elements reached seafloor, set to bottom
14:07:34 DEBUG opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
14:07:34 DEBUG opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
14:07:34 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:34 DEBUG opendrift.models.basemodel:2945: 2466 active elements (0 deactivated)
14:07:34 DEBUG opendrift.models.basemodel:1658: to be seeded: 7534, already seeded 2466
14:07:34 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:07:34 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:34 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:34 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:34 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:34 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:34 DEBUG opendrift.models.basemodel:1253: Data needed for 2500 elements
14:07:34 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:34 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 01:00:00 (before)
2023-09-02 02:00:00 (after)
14:07:34 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 01:00:00) in space (linearNDFast)
14:07:34 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:34 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:34 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:34 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:34 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:34 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:34 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.7296 (max)
14:07:34 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:34 DEBUG opendrift.models.basemodel:1527: 2500 active elements
14:07:34 DEBUG opendrift.models.basemodel:1538: 59.10188826286176 <- latitude -> 59.18348552684411
14:07:34 DEBUG opendrift.models.basemodel:1543: 10.942812926688939 <- longitude -> 11.029257436400638
14:07:34 DEBUG opendrift.models.basemodel:1548: -14.143186569213867 <- z -> 0.0
14:07:34 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:34 DEBUG opendrift.models.basemodel:836: Lifting 208 elements to seafloor.
14:07:34 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:34 INFO opendrift.models.basemodel:2882: 2023-09-02 01:56:21.121579 - step 72 of 216 - 2500 active elements (0 deactivated)
14:07:34 DEBUG opendrift.models.basemodel:2888: 7500 elements scheduled.
14:07:34 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:34 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:34 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:34 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:34 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:34 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:34 DEBUG opendrift.models.basemodel:1253: Data needed for 2500 elements
14:07:34 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:34 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:34 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:34 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:34 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:34 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:34 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:34 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:34 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:34 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:34 DEBUG opendrift.models.basemodel:1253: Data needed for 2500 elements
14:07:34 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:34 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 01:00:00 (before)
2023-09-02 02:00:00 (after)
14:07:35 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:35 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:35 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:35 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:35 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:35 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:35 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 24x23x5) for time after (2023-09-02 02:00:00)
14:07:35 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 01:00:00) in space (linearNDFast)
14:07:35 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:35 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 02:00:00) in space (linearNDFast)
14:07:35 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1224 elements, expanding data 1
14:07:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1224 elements, expanding data 1
14:07:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1269 elements, expanding data 1
14:07:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 76 elements, expanding data 2
14:07:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:07:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1269 elements, expanding data 1
14:07:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 76 elements, expanding data 2
14:07:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:07:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1269 elements, expanding data 1
14:07:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 76 elements, expanding data 2
14:07:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:07:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1269 elements, expanding data 1
14:07:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 76 elements, expanding data 2
14:07:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:07:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1269 elements, expanding data 1
14:07:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 76 elements, expanding data 2
14:07:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:07:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1857 elements, expanding data 1
14:07:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 569 elements, expanding data 2
14:07:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1857 elements, expanding data 1
14:07:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 569 elements, expanding data 2
14:07:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1857 elements, expanding data 1
14:07:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 569 elements, expanding data 2
14:07:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1857 elements, expanding data 1
14:07:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 569 elements, expanding data 2
14:07:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1857 elements, expanding data 1
14:07:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 569 elements, expanding data 2
14:07:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1224 elements, expanding data 1
14:07:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1224 elements, expanding data 1
14:07:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1224 elements, expanding data 1
14:07:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1224 elements, expanding data 1
14:07:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1224 elements, expanding data 1
14:07:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:35 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 01:00:00, weight 0.06) and
after (2023-09-02 02:00:00, weight 0.94) in time
14:07:35 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05719762240909 and -58.97075312914386 degrees.
14:07:35 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05719762240909 and -58.97075312914386 degrees.
14:07:35 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:35 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:35 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:35 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:35 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:35 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:35 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.702355 (min) 1.16105 (max)
14:07:35 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.0718 (min) 0.873144 (max)
14:07:35 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -2.07269e-05 (min) 0.000615017 (max)
14:07:35 DEBUG opendrift.models.basemodel:1524: x_wind: -7.02851 (min) 5.98433 (max)
14:07:35 DEBUG opendrift.models.basemodel:1524: y_wind: -9.70926 (min) 4.88574 (max)
14:07:35 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:35 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:35 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:35 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:35 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:35 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:35 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:35 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.7296 (max)
14:07:35 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:35 DEBUG opendrift.models.basemodel:1527: 2500 active elements
14:07:35 DEBUG opendrift.models.basemodel:1538: 59.10188826286176 <- latitude -> 59.18348552684411
14:07:35 DEBUG opendrift.models.basemodel:1543: 10.942812926688939 <- longitude -> 11.029257436400638
14:07:35 DEBUG opendrift.models.basemodel:1548: -14.143186569213867 <- z -> 0.0
14:07:35 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:35 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:35 DEBUG opendrift.models.physics_methods:1050: min: 0.013064, mean: 2.819263, max: 8.676759
14:07:35 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.013064, mean: 2.819263, max: 8.676759
14:07:35 DEBUG opendrift.models.basemodel:813: 293 elements hit coastline, moving back to water
14:07:35 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:07:35 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:35 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:35 DEBUG opendrift.models.physics_methods:828: Advecting 36 of 2500 elements above 0.100m with wind-sheared ocean current (0.011939 m/s - 0.104786 m/s)
14:07:35 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:35 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:35 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09316150602825164
14:07:35 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:35 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:35 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:35 DEBUG opendrift.models.oceandrift:582: 244 elements penetrated seafloor, lifting up
14:07:35 DEBUG opendrift.models.oceandrift:600: 40 elements reached seafloor, set to bottom
14:07:35 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
14:07:35 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
14:07:35 DEBUG opendrift.models.oceandrift:582: 211 elements penetrated seafloor, lifting up
14:07:35 DEBUG opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
14:07:35 DEBUG opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
14:07:35 DEBUG opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
14:07:35 DEBUG opendrift.models.oceandrift:582: 218 elements penetrated seafloor, lifting up
14:07:35 DEBUG opendrift.models.oceandrift:600: 27 elements reached seafloor, set to bottom
14:07:35 DEBUG opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
14:07:35 DEBUG opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
14:07:35 DEBUG opendrift.models.oceandrift:582: 200 elements penetrated seafloor, lifting up
14:07:35 DEBUG opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
14:07:35 DEBUG opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
14:07:35 DEBUG opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
14:07:35 DEBUG opendrift.models.oceandrift:582: 163 elements penetrated seafloor, lifting up
14:07:35 DEBUG opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
14:07:35 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
14:07:35 DEBUG opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
14:07:35 DEBUG opendrift.models.oceandrift:582: 163 elements penetrated seafloor, lifting up
14:07:35 DEBUG opendrift.models.oceandrift:600: 23 elements reached seafloor, set to bottom
14:07:35 DEBUG opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
14:07:35 DEBUG opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
14:07:35 DEBUG opendrift.models.oceandrift:582: 170 elements penetrated seafloor, lifting up
14:07:35 DEBUG opendrift.models.oceandrift:600: 27 elements reached seafloor, set to bottom
14:07:35 DEBUG opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
14:07:35 DEBUG opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
14:07:35 DEBUG opendrift.models.oceandrift:582: 173 elements penetrated seafloor, lifting up
14:07:35 DEBUG opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
14:07:35 DEBUG opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
14:07:35 DEBUG opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
14:07:35 DEBUG opendrift.models.oceandrift:582: 161 elements penetrated seafloor, lifting up
14:07:35 DEBUG opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
14:07:35 DEBUG opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
14:07:35 DEBUG opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
14:07:35 DEBUG opendrift.models.oceandrift:582: 155 elements penetrated seafloor, lifting up
14:07:35 DEBUG opendrift.models.oceandrift:600: 23 elements reached seafloor, set to bottom
14:07:35 DEBUG opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
14:07:35 DEBUG opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
14:07:35 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:35 DEBUG opendrift.models.basemodel:2945: 2500 active elements (0 deactivated)
14:07:35 DEBUG opendrift.models.basemodel:1658: to be seeded: 7500, already seeded 2500
14:07:35 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:07:35 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:35 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:35 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:35 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:35 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:35 DEBUG opendrift.models.basemodel:1253: Data needed for 2535 elements
14:07:35 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:35 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 02:00:00 (before)
2023-09-02 03:00:00 (after)
14:07:35 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 02:00:00) in space (linearNDFast)
14:07:35 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:35 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:35 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:35 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:35 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:35 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:35 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.7464 (max)
14:07:35 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:35 DEBUG opendrift.models.basemodel:1527: 2535 active elements
14:07:35 DEBUG opendrift.models.basemodel:1538: 59.100525276848686 <- latitude -> 59.1836668259232
14:07:35 DEBUG opendrift.models.basemodel:1543: 10.942767457850328 <- longitude -> 11.030971378904972
14:07:35 DEBUG opendrift.models.basemodel:1548: -14.691975593566895 <- z -> 0.0
14:07:35 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:35 DEBUG opendrift.models.basemodel:836: Lifting 210 elements to seafloor.
14:07:35 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:35 INFO opendrift.models.basemodel:2882: 2023-09-02 02:06:21.121579 - step 73 of 216 - 2535 active elements (0 deactivated)
14:07:35 DEBUG opendrift.models.basemodel:2888: 7465 elements scheduled.
14:07:35 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:35 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:35 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:35 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:35 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:35 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:35 DEBUG opendrift.models.basemodel:1253: Data needed for 2535 elements
14:07:35 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:35 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:35 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:35 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:35 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:35 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:35 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:35 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:35 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:35 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:35 DEBUG opendrift.models.basemodel:1253: Data needed for 2535 elements
14:07:35 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:35 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 02:00:00 (before)
2023-09-02 03:00:00 (after)
14:07:36 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:36 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:36 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:36 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:36 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:36 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:36 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 24x24x5) for time after (2023-09-02 03:00:00)
14:07:36 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 02:00:00) in space (linearNDFast)
14:07:36 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:36 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 03:00:00) in space (linearNDFast)
14:07:36 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1257 elements, expanding data 1
14:07:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:07:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1257 elements, expanding data 1
14:07:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:07:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1299 elements, expanding data 1
14:07:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 85 elements, expanding data 2
14:07:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
14:07:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1299 elements, expanding data 1
14:07:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 85 elements, expanding data 2
14:07:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
14:07:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1299 elements, expanding data 1
14:07:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 85 elements, expanding data 2
14:07:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
14:07:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1299 elements, expanding data 1
14:07:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 85 elements, expanding data 2
14:07:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
14:07:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1299 elements, expanding data 1
14:07:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 85 elements, expanding data 2
14:07:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
14:07:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1887 elements, expanding data 1
14:07:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 593 elements, expanding data 2
14:07:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1887 elements, expanding data 1
14:07:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 593 elements, expanding data 2
14:07:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1887 elements, expanding data 1
14:07:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 593 elements, expanding data 2
14:07:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1887 elements, expanding data 1
14:07:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 593 elements, expanding data 2
14:07:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1887 elements, expanding data 1
14:07:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 593 elements, expanding data 2
14:07:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1257 elements, expanding data 1
14:07:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:07:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1257 elements, expanding data 1
14:07:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:07:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1257 elements, expanding data 1
14:07:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:07:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1257 elements, expanding data 1
14:07:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:07:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1257 elements, expanding data 1
14:07:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:07:36 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 02:00:00, weight 0.89) and
after (2023-09-02 03:00:00, weight 0.11) in time
14:07:36 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05724310044426 and -58.96903919106354 degrees.
14:07:36 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05724310044426 and -58.96903919106354 degrees.
14:07:36 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:36 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:36 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:36 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:36 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:36 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:36 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.720895 (min) 1.1938 (max)
14:07:36 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.952841 (min) 0.937344 (max)
14:07:36 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -1.7697e-05 (min) 0.000584636 (max)
14:07:36 DEBUG opendrift.models.basemodel:1524: x_wind: -8.21298 (min) 5.80871 (max)
14:07:36 DEBUG opendrift.models.basemodel:1524: y_wind: -9.4992 (min) 4.61869 (max)
14:07:36 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:36 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:36 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:36 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:36 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:36 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:36 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:36 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.7464 (max)
14:07:36 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:36 DEBUG opendrift.models.basemodel:1527: 2535 active elements
14:07:36 DEBUG opendrift.models.basemodel:1538: 59.100525276848686 <- latitude -> 59.1836668259232
14:07:36 DEBUG opendrift.models.basemodel:1543: 10.942767457850328 <- longitude -> 11.030971378904972
14:07:36 DEBUG opendrift.models.basemodel:1548: -14.691975593566895 <- z -> 0.0
14:07:36 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:36 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:36 DEBUG opendrift.models.physics_methods:1050: min: 0.058419, mean: 2.889778, max: 8.364843
14:07:36 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.058419, mean: 2.889778, max: 8.364843
14:07:36 DEBUG opendrift.models.basemodel:813: 318 elements hit coastline, moving back to water
14:07:36 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:07:36 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:36 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:36 DEBUG opendrift.models.physics_methods:828: Advecting 36 of 2535 elements above 0.100m with wind-sheared ocean current (0.017993 m/s - 0.171592 m/s)
14:07:36 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:36 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:36 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08658416468484878
14:07:36 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:36 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:36 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:36 DEBUG opendrift.models.oceandrift:582: 287 elements penetrated seafloor, lifting up
14:07:36 DEBUG opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
14:07:36 DEBUG opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
14:07:36 DEBUG opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
14:07:36 DEBUG opendrift.models.oceandrift:582: 190 elements penetrated seafloor, lifting up
14:07:36 DEBUG opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
14:07:36 DEBUG opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
14:07:36 DEBUG opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
14:07:36 DEBUG opendrift.models.oceandrift:582: 185 elements penetrated seafloor, lifting up
14:07:36 DEBUG opendrift.models.oceandrift:600: 42 elements reached seafloor, set to bottom
14:07:36 DEBUG opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
14:07:36 DEBUG opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
14:07:36 DEBUG opendrift.models.oceandrift:582: 190 elements penetrated seafloor, lifting up
14:07:36 DEBUG opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
14:07:36 DEBUG opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
14:07:36 DEBUG opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
14:07:36 DEBUG opendrift.models.oceandrift:582: 159 elements penetrated seafloor, lifting up
14:07:36 DEBUG opendrift.models.oceandrift:600: 23 elements reached seafloor, set to bottom
14:07:36 DEBUG opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
14:07:36 DEBUG opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
14:07:36 DEBUG opendrift.models.oceandrift:582: 153 elements penetrated seafloor, lifting up
14:07:36 DEBUG opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
14:07:36 DEBUG opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
14:07:36 DEBUG opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
14:07:36 DEBUG opendrift.models.oceandrift:582: 149 elements penetrated seafloor, lifting up
14:07:36 DEBUG opendrift.models.oceandrift:600: 23 elements reached seafloor, set to bottom
14:07:36 DEBUG opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
14:07:36 DEBUG opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
14:07:36 DEBUG opendrift.models.oceandrift:582: 140 elements penetrated seafloor, lifting up
14:07:36 DEBUG opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
14:07:36 DEBUG opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
14:07:36 DEBUG opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
14:07:36 DEBUG opendrift.models.oceandrift:582: 155 elements penetrated seafloor, lifting up
14:07:36 DEBUG opendrift.models.oceandrift:600: 23 elements reached seafloor, set to bottom
14:07:36 DEBUG opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
14:07:36 DEBUG opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
14:07:36 DEBUG opendrift.models.oceandrift:582: 145 elements penetrated seafloor, lifting up
14:07:36 DEBUG opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
14:07:36 DEBUG opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
14:07:36 DEBUG opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
14:07:36 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:36 DEBUG opendrift.models.basemodel:2945: 2535 active elements (0 deactivated)
14:07:36 DEBUG opendrift.models.basemodel:1658: to be seeded: 7465, already seeded 2535
14:07:36 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:07:36 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:36 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:36 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:36 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:36 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:36 DEBUG opendrift.models.basemodel:1253: Data needed for 2570 elements
14:07:36 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:36 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 02:00:00 (before)
2023-09-02 03:00:00 (after)
14:07:36 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 02:00:00) in space (linearNDFast)
14:07:36 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:36 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:36 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:36 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:36 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:36 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:36 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.8659 (max)
14:07:36 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:36 DEBUG opendrift.models.basemodel:1527: 2570 active elements
14:07:36 DEBUG opendrift.models.basemodel:1538: 59.10231786250184 <- latitude -> 59.18400438020551
14:07:36 DEBUG opendrift.models.basemodel:1543: 10.943226736391512 <- longitude -> 11.028096416102224
14:07:36 DEBUG opendrift.models.basemodel:1548: -14.681975593566895 <- z -> 0.0
14:07:36 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:36 DEBUG opendrift.models.basemodel:836: Lifting 201 elements to seafloor.
14:07:36 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:36 INFO opendrift.models.basemodel:2882: 2023-09-02 02:16:21.121579 - step 74 of 216 - 2570 active elements (0 deactivated)
14:07:36 DEBUG opendrift.models.basemodel:2888: 7430 elements scheduled.
14:07:36 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:36 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:36 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:36 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:36 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:36 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:36 DEBUG opendrift.models.basemodel:1253: Data needed for 2570 elements
14:07:36 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:36 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:36 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:36 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:36 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:36 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:36 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:36 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:36 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:36 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:36 DEBUG opendrift.models.basemodel:1253: Data needed for 2570 elements
14:07:36 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:36 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 02:00:00 (before)
2023-09-02 03:00:00 (after)
14:07:37 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:37 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:37 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:37 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:37 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:37 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:37 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 24x23x5) for time after (2023-09-02 03:00:00)
14:07:37 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 02:00:00) in space (linearNDFast)
14:07:37 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:37 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 03:00:00) in space (linearNDFast)
14:07:37 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1270 elements, expanding data 1
14:07:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
14:07:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1270 elements, expanding data 1
14:07:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
14:07:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1309 elements, expanding data 1
14:07:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
14:07:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1309 elements, expanding data 1
14:07:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
14:07:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1309 elements, expanding data 1
14:07:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
14:07:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1309 elements, expanding data 1
14:07:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
14:07:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1309 elements, expanding data 1
14:07:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
14:07:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1916 elements, expanding data 1
14:07:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 610 elements, expanding data 2
14:07:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1916 elements, expanding data 1
14:07:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 610 elements, expanding data 2
14:07:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1916 elements, expanding data 1
14:07:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 610 elements, expanding data 2
14:07:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1916 elements, expanding data 1
14:07:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 610 elements, expanding data 2
14:07:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1916 elements, expanding data 1
14:07:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 610 elements, expanding data 2
14:07:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1270 elements, expanding data 1
14:07:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
14:07:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1270 elements, expanding data 1
14:07:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
14:07:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1270 elements, expanding data 1
14:07:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
14:07:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1270 elements, expanding data 1
14:07:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
14:07:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1270 elements, expanding data 1
14:07:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
14:07:37 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 02:00:00, weight 0.73) and
after (2023-09-02 03:00:00, weight 0.27) in time
14:07:37 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05678381730814 and -58.971914148251514 degrees.
14:07:37 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05678381730814 and -58.971914148251514 degrees.
14:07:37 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:37 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:37 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:37 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:37 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:37 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:37 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.812701 (min) 1.1135 (max)
14:07:37 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.871356 (min) 0.644093 (max)
14:07:37 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -4.14679e-05 (min) 0.000674092 (max)
14:07:37 DEBUG opendrift.models.basemodel:1524: x_wind: -8.06138 (min) 6.71055 (max)
14:07:37 DEBUG opendrift.models.basemodel:1524: y_wind: -9.08332 (min) 5.22361 (max)
14:07:37 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:37 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:37 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:37 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:37 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:37 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:37 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:37 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.8659 (max)
14:07:37 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:37 DEBUG opendrift.models.basemodel:1527: 2570 active elements
14:07:37 DEBUG opendrift.models.basemodel:1538: 59.10231786250184 <- latitude -> 59.18400438020551
14:07:37 DEBUG opendrift.models.basemodel:1543: 10.943226736391512 <- longitude -> 11.028096416102224
14:07:37 DEBUG opendrift.models.basemodel:1548: -14.681975593566895 <- z -> 0.0
14:07:37 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:37 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:37 DEBUG opendrift.models.physics_methods:1050: min: 0.043524, mean: 2.953670, max: 8.227261
14:07:37 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.043524, mean: 2.953670, max: 8.227261
14:07:37 DEBUG opendrift.models.basemodel:813: 335 elements hit coastline, moving back to water
14:07:37 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
14:07:37 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:37 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:37 DEBUG opendrift.models.physics_methods:828: Advecting 37 of 2570 elements above 0.100m with wind-sheared ocean current (0.008196 m/s - 0.161774 m/s)
14:07:37 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:37 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:37 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08375950810249329
14:07:37 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:37 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:37 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:37 DEBUG opendrift.models.oceandrift:582: 280 elements penetrated seafloor, lifting up
14:07:37 DEBUG opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
14:07:37 DEBUG opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
14:07:37 DEBUG opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
14:07:37 DEBUG opendrift.models.oceandrift:582: 217 elements penetrated seafloor, lifting up
14:07:37 DEBUG opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
14:07:37 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
14:07:37 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
14:07:37 DEBUG opendrift.models.oceandrift:582: 193 elements penetrated seafloor, lifting up
14:07:37 DEBUG opendrift.models.oceandrift:600: 29 elements reached seafloor, set to bottom
14:07:37 DEBUG opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
14:07:37 DEBUG opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
14:07:37 DEBUG opendrift.models.oceandrift:582: 188 elements penetrated seafloor, lifting up
14:07:37 DEBUG opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
14:07:37 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
14:07:37 DEBUG opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
14:07:37 DEBUG opendrift.models.oceandrift:582: 171 elements penetrated seafloor, lifting up
14:07:37 DEBUG opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
14:07:37 DEBUG opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
14:07:37 DEBUG opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
14:07:37 DEBUG opendrift.models.oceandrift:582: 175 elements penetrated seafloor, lifting up
14:07:37 DEBUG opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
14:07:37 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
14:07:37 DEBUG opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
14:07:37 DEBUG opendrift.models.oceandrift:582: 175 elements penetrated seafloor, lifting up
14:07:37 DEBUG opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
14:07:37 DEBUG opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
14:07:37 DEBUG opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
14:07:37 DEBUG opendrift.models.oceandrift:582: 156 elements penetrated seafloor, lifting up
14:07:37 DEBUG opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
14:07:37 DEBUG opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
14:07:37 DEBUG opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
14:07:37 DEBUG opendrift.models.oceandrift:582: 164 elements penetrated seafloor, lifting up
14:07:37 DEBUG opendrift.models.oceandrift:600: 27 elements reached seafloor, set to bottom
14:07:37 DEBUG opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
14:07:37 DEBUG opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
14:07:37 DEBUG opendrift.models.oceandrift:582: 162 elements penetrated seafloor, lifting up
14:07:37 DEBUG opendrift.models.oceandrift:600: 19 elements reached seafloor, set to bottom
14:07:37 DEBUG opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
14:07:37 DEBUG opendrift.models.sedimentdrift:112: Settling 19 elements at seafloor
14:07:37 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:37 DEBUG opendrift.models.basemodel:2945: 2570 active elements (0 deactivated)
14:07:37 DEBUG opendrift.models.basemodel:1658: to be seeded: 7430, already seeded 2570
14:07:37 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:07:37 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:37 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:37 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:37 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:37 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:37 DEBUG opendrift.models.basemodel:1253: Data needed for 2604 elements
14:07:37 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:37 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 02:00:00 (before)
2023-09-02 03:00:00 (after)
14:07:37 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 02:00:00) in space (linearNDFast)
14:07:37 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:37 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:37 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:37 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:37 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:37 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:37 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.8996 (max)
14:07:37 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:37 DEBUG opendrift.models.basemodel:1527: 2604 active elements
14:07:37 DEBUG opendrift.models.basemodel:1538: 59.10313530870924 <- latitude -> 59.184278855058054
14:07:37 DEBUG opendrift.models.basemodel:1543: 10.941096432981148 <- longitude -> 11.027943188483512
14:07:37 DEBUG opendrift.models.basemodel:1548: -13.880022277832031 <- z -> 0.0
14:07:37 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:37 DEBUG opendrift.models.basemodel:836: Lifting 206 elements to seafloor.
14:07:37 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:37 INFO opendrift.models.basemodel:2882: 2023-09-02 02:26:21.121579 - step 75 of 216 - 2604 active elements (0 deactivated)
14:07:37 DEBUG opendrift.models.basemodel:2888: 7396 elements scheduled.
14:07:37 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:37 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:37 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:37 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:37 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:37 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:37 DEBUG opendrift.models.basemodel:1253: Data needed for 2604 elements
14:07:37 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:37 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:37 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:37 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:37 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:37 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:37 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:37 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:37 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:37 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:37 DEBUG opendrift.models.basemodel:1253: Data needed for 2604 elements
14:07:37 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:37 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 02:00:00 (before)
2023-09-02 03:00:00 (after)
14:07:38 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:38 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:38 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:38 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:38 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:38 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:38 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 24x24x5) for time after (2023-09-02 03:00:00)
14:07:38 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 02:00:00) in space (linearNDFast)
14:07:38 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:38 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 03:00:00) in space (linearNDFast)
14:07:38 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1296 elements, expanding data 1
14:07:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:07:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1296 elements, expanding data 1
14:07:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:07:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1341 elements, expanding data 1
14:07:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 76 elements, expanding data 2
14:07:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1341 elements, expanding data 1
14:07:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 76 elements, expanding data 2
14:07:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1341 elements, expanding data 1
14:07:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 76 elements, expanding data 2
14:07:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1341 elements, expanding data 1
14:07:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 76 elements, expanding data 2
14:07:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1341 elements, expanding data 1
14:07:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 76 elements, expanding data 2
14:07:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1941 elements, expanding data 1
14:07:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 614 elements, expanding data 2
14:07:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1941 elements, expanding data 1
14:07:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 614 elements, expanding data 2
14:07:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1941 elements, expanding data 1
14:07:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 614 elements, expanding data 2
14:07:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1941 elements, expanding data 1
14:07:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 614 elements, expanding data 2
14:07:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1941 elements, expanding data 1
14:07:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 614 elements, expanding data 2
14:07:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1296 elements, expanding data 1
14:07:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:07:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1296 elements, expanding data 1
14:07:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:07:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1296 elements, expanding data 1
14:07:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:07:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1296 elements, expanding data 1
14:07:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:07:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1296 elements, expanding data 1
14:07:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:07:38 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 02:00:00, weight 0.56) and
after (2023-09-02 03:00:00, weight 0.44) in time
14:07:38 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.058914116182336 and -58.97206737708322 degrees.
14:07:38 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.058914116182336 and -58.97206737708322 degrees.
14:07:38 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:38 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:38 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:38 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:38 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:38 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:38 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.71755 (min) 1.12598 (max)
14:07:38 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.0873 (min) 0.771187 (max)
14:07:38 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -2.87103e-05 (min) 0.000717877 (max)
14:07:38 DEBUG opendrift.models.basemodel:1524: x_wind: -7.58778 (min) 6.42409 (max)
14:07:38 DEBUG opendrift.models.basemodel:1524: y_wind: -8.68253 (min) 5.73526 (max)
14:07:38 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:38 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:38 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:38 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:38 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:38 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:38 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:38 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.8996 (max)
14:07:38 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:38 DEBUG opendrift.models.basemodel:1527: 2604 active elements
14:07:38 DEBUG opendrift.models.basemodel:1538: 59.10313530870924 <- latitude -> 59.184278855058054
14:07:38 DEBUG opendrift.models.basemodel:1543: 10.941096432981148 <- longitude -> 11.027943188483512
14:07:38 DEBUG opendrift.models.basemodel:1548: -13.880022277832031 <- z -> 0.0
14:07:38 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:38 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:38 DEBUG opendrift.models.physics_methods:1050: min: 0.028628, mean: 2.984824, max: 8.009915
14:07:38 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.028628, mean: 2.984824, max: 8.009915
14:07:38 DEBUG opendrift.models.basemodel:813: 329 elements hit coastline, moving back to water
14:07:38 DEBUG opendrift.models.basemodel:836: Lifting 87 elements to seafloor.
14:07:38 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:38 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:38 DEBUG opendrift.models.physics_methods:828: Advecting 36 of 2604 elements above 0.100m with wind-sheared ocean current (0.008590 m/s - 0.181138 m/s)
14:07:38 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:38 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:38 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07939268120487213
14:07:38 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:38 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:38 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:38 DEBUG opendrift.models.oceandrift:582: 318 elements penetrated seafloor, lifting up
14:07:38 DEBUG opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
14:07:38 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
14:07:38 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
14:07:38 DEBUG opendrift.models.oceandrift:582: 215 elements penetrated seafloor, lifting up
14:07:38 DEBUG opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
14:07:38 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
14:07:38 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
14:07:38 DEBUG opendrift.models.oceandrift:582: 214 elements penetrated seafloor, lifting up
14:07:38 DEBUG opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
14:07:38 DEBUG opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
14:07:38 DEBUG opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
14:07:38 DEBUG opendrift.models.oceandrift:582: 191 elements penetrated seafloor, lifting up
14:07:38 DEBUG opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
14:07:38 DEBUG opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
14:07:38 DEBUG opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
14:07:38 DEBUG opendrift.models.oceandrift:582: 188 elements penetrated seafloor, lifting up
14:07:38 DEBUG opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
14:07:38 DEBUG opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
14:07:38 DEBUG opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
14:07:38 DEBUG opendrift.models.oceandrift:582: 177 elements penetrated seafloor, lifting up
14:07:38 DEBUG opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
14:07:38 DEBUG opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
14:07:38 DEBUG opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
14:07:38 DEBUG opendrift.models.oceandrift:582: 162 elements penetrated seafloor, lifting up
14:07:38 DEBUG opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
14:07:38 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
14:07:38 DEBUG opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
14:07:38 DEBUG opendrift.models.oceandrift:582: 172 elements penetrated seafloor, lifting up
14:07:38 DEBUG opendrift.models.oceandrift:600: 27 elements reached seafloor, set to bottom
14:07:38 DEBUG opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
14:07:38 DEBUG opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
14:07:38 DEBUG opendrift.models.oceandrift:582: 154 elements penetrated seafloor, lifting up
14:07:38 DEBUG opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
14:07:38 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
14:07:38 DEBUG opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
14:07:38 DEBUG opendrift.models.oceandrift:582: 179 elements penetrated seafloor, lifting up
14:07:38 DEBUG opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
14:07:38 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
14:07:38 DEBUG opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
14:07:38 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:38 DEBUG opendrift.models.basemodel:2945: 2604 active elements (0 deactivated)
14:07:38 DEBUG opendrift.models.basemodel:1658: to be seeded: 7396, already seeded 2604
14:07:38 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:07:38 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:38 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:38 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:38 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:38 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:38 DEBUG opendrift.models.basemodel:1253: Data needed for 2639 elements
14:07:38 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:38 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 02:00:00 (before)
2023-09-02 03:00:00 (after)
14:07:38 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 02:00:00) in space (linearNDFast)
14:07:38 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:38 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:38 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:38 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:38 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:38 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:38 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.1512 (max)
14:07:38 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:38 DEBUG opendrift.models.basemodel:1527: 2639 active elements
14:07:38 DEBUG opendrift.models.basemodel:1538: 59.10408875035472 <- latitude -> 59.18477688299001
14:07:38 DEBUG opendrift.models.basemodel:1543: 10.942091176179796 <- longitude -> 11.026559661689904
14:07:38 DEBUG opendrift.models.basemodel:1548: -14.067113585450116 <- z -> 0.0
14:07:38 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:38 DEBUG opendrift.models.basemodel:836: Lifting 211 elements to seafloor.
14:07:38 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:38 INFO opendrift.models.basemodel:2882: 2023-09-02 02:36:21.121579 - step 76 of 216 - 2639 active elements (0 deactivated)
14:07:38 DEBUG opendrift.models.basemodel:2888: 7361 elements scheduled.
14:07:38 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:38 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:38 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:38 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:38 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:38 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:38 DEBUG opendrift.models.basemodel:1253: Data needed for 2639 elements
14:07:38 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:38 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:38 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:38 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:38 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:38 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:38 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:38 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:38 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:38 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:38 DEBUG opendrift.models.basemodel:1253: Data needed for 2639 elements
14:07:38 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:38 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 02:00:00 (before)
2023-09-02 03:00:00 (after)
14:07:39 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:39 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:39 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:39 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:39 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:39 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:39 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 24x24x5) for time after (2023-09-02 03:00:00)
14:07:39 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 02:00:00) in space (linearNDFast)
14:07:39 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:39 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 03:00:00) in space (linearNDFast)
14:07:39 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1310 elements, expanding data 1
14:07:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:07:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1310 elements, expanding data 1
14:07:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:07:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1359 elements, expanding data 1
14:07:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 82 elements, expanding data 2
14:07:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1359 elements, expanding data 1
14:07:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 82 elements, expanding data 2
14:07:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1359 elements, expanding data 1
14:07:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 82 elements, expanding data 2
14:07:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1359 elements, expanding data 1
14:07:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 82 elements, expanding data 2
14:07:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1359 elements, expanding data 1
14:07:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 82 elements, expanding data 2
14:07:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1973 elements, expanding data 1
14:07:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 634 elements, expanding data 2
14:07:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1973 elements, expanding data 1
14:07:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 634 elements, expanding data 2
14:07:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1973 elements, expanding data 1
14:07:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 634 elements, expanding data 2
14:07:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1973 elements, expanding data 1
14:07:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 634 elements, expanding data 2
14:07:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1973 elements, expanding data 1
14:07:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 634 elements, expanding data 2
14:07:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1310 elements, expanding data 1
14:07:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:07:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1310 elements, expanding data 1
14:07:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:07:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1310 elements, expanding data 1
14:07:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:07:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1310 elements, expanding data 1
14:07:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:07:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1310 elements, expanding data 1
14:07:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:07:39 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 02:00:00, weight 0.39) and
after (2023-09-02 03:00:00, weight 0.61) in time
14:07:39 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.0579193783946 and -58.97345090839737 degrees.
14:07:39 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.0579193783946 and -58.97345090839737 degrees.
14:07:39 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:39 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:39 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:39 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:39 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:39 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:39 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.797836 (min) 1.46461 (max)
14:07:39 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.994277 (min) 0.780054 (max)
14:07:39 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -4.68445e-05 (min) 0.00077369 (max)
14:07:39 DEBUG opendrift.models.basemodel:1524: x_wind: -8.42144 (min) 5.87262 (max)
14:07:39 DEBUG opendrift.models.basemodel:1524: y_wind: -9.06824 (min) 4.45817 (max)
14:07:39 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:39 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:39 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:39 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:39 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:39 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:39 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:39 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.1512 (max)
14:07:39 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:39 DEBUG opendrift.models.basemodel:1527: 2639 active elements
14:07:39 DEBUG opendrift.models.basemodel:1538: 59.10408875035472 <- latitude -> 59.18477688299001
14:07:39 DEBUG opendrift.models.basemodel:1543: 10.942091176179796 <- longitude -> 11.026559661689904
14:07:39 DEBUG opendrift.models.basemodel:1548: -14.067113585450116 <- z -> 0.0
14:07:39 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:39 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:39 DEBUG opendrift.models.physics_methods:1050: min: 0.056407, mean: 3.023025, max: 7.959828
14:07:39 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.056407, mean: 3.023025, max: 7.959828
14:07:39 DEBUG opendrift.models.basemodel:813: 338 elements hit coastline, moving back to water
14:07:39 DEBUG opendrift.models.basemodel:836: Lifting 72 elements to seafloor.
14:07:39 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:39 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:39 DEBUG opendrift.models.physics_methods:828: Advecting 40 of 2639 elements above 0.100m with wind-sheared ocean current (0.005445 m/s - 0.115163 m/s)
14:07:39 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:39 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:39 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07840292984350204
14:07:39 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:39 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:39 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:39 DEBUG opendrift.models.oceandrift:582: 293 elements penetrated seafloor, lifting up
14:07:39 DEBUG opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
14:07:39 DEBUG opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
14:07:39 DEBUG opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
14:07:39 DEBUG opendrift.models.oceandrift:582: 221 elements penetrated seafloor, lifting up
14:07:39 DEBUG opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
14:07:39 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
14:07:39 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
14:07:39 DEBUG opendrift.models.oceandrift:582: 194 elements penetrated seafloor, lifting up
14:07:39 DEBUG opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
14:07:39 DEBUG opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
14:07:39 DEBUG opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
14:07:39 DEBUG opendrift.models.oceandrift:582: 187 elements penetrated seafloor, lifting up
14:07:39 DEBUG opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
14:07:39 DEBUG opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
14:07:39 DEBUG opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
14:07:39 DEBUG opendrift.models.oceandrift:582: 202 elements penetrated seafloor, lifting up
14:07:39 DEBUG opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
14:07:39 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
14:07:39 DEBUG opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
14:07:39 DEBUG opendrift.models.oceandrift:582: 203 elements penetrated seafloor, lifting up
14:07:39 DEBUG opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
14:07:39 DEBUG opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
14:07:39 DEBUG opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
14:07:39 DEBUG opendrift.models.oceandrift:582: 173 elements penetrated seafloor, lifting up
14:07:39 DEBUG opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
14:07:39 DEBUG opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
14:07:39 DEBUG opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
14:07:39 DEBUG opendrift.models.oceandrift:582: 181 elements penetrated seafloor, lifting up
14:07:39 DEBUG opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
14:07:39 DEBUG opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
14:07:39 DEBUG opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
14:07:39 DEBUG opendrift.models.oceandrift:582: 177 elements penetrated seafloor, lifting up
14:07:39 DEBUG opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
14:07:39 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
14:07:39 DEBUG opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
14:07:39 DEBUG opendrift.models.oceandrift:582: 166 elements penetrated seafloor, lifting up
14:07:39 DEBUG opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
14:07:39 DEBUG opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
14:07:39 DEBUG opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
14:07:39 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:39 DEBUG opendrift.models.basemodel:2945: 2639 active elements (0 deactivated)
14:07:39 DEBUG opendrift.models.basemodel:1658: to be seeded: 7361, already seeded 2639
14:07:39 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:07:39 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:39 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:39 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:39 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:39 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:39 DEBUG opendrift.models.basemodel:1253: Data needed for 2674 elements
14:07:39 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:39 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 02:00:00 (before)
2023-09-02 03:00:00 (after)
14:07:39 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 02:00:00) in space (linearNDFast)
14:07:39 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:39 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:39 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:39 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:39 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:39 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:39 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.2681 (max)
14:07:39 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:39 DEBUG opendrift.models.basemodel:1527: 2674 active elements
14:07:39 DEBUG opendrift.models.basemodel:1538: 59.103952434026596 <- latitude -> 59.186063039189555
14:07:39 DEBUG opendrift.models.basemodel:1543: 10.940978479555548 <- longitude -> 11.026947496632289
14:07:39 DEBUG opendrift.models.basemodel:1548: -13.558683476182349 <- z -> 0.0
14:07:39 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:39 DEBUG opendrift.models.basemodel:836: Lifting 214 elements to seafloor.
14:07:39 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:39 INFO opendrift.models.basemodel:2882: 2023-09-02 02:46:21.121579 - step 77 of 216 - 2674 active elements (0 deactivated)
14:07:39 DEBUG opendrift.models.basemodel:2888: 7326 elements scheduled.
14:07:39 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:39 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:39 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:39 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:39 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:39 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:39 DEBUG opendrift.models.basemodel:1253: Data needed for 2674 elements
14:07:39 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:39 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:39 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:39 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:39 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:39 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:39 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:39 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:39 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:39 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:39 DEBUG opendrift.models.basemodel:1253: Data needed for 2674 elements
14:07:39 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:39 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 02:00:00 (before)
2023-09-02 03:00:00 (after)
14:07:40 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:40 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:40 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:40 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:40 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:40 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:40 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 25x23x5) for time after (2023-09-02 03:00:00)
14:07:40 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 02:00:00) in space (linearNDFast)
14:07:40 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:40 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 03:00:00) in space (linearNDFast)
14:07:40 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1325 elements, expanding data 1
14:07:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
14:07:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1325 elements, expanding data 1
14:07:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
14:07:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1376 elements, expanding data 1
14:07:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 73 elements, expanding data 2
14:07:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1376 elements, expanding data 1
14:07:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 73 elements, expanding data 2
14:07:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1376 elements, expanding data 1
14:07:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 73 elements, expanding data 2
14:07:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1376 elements, expanding data 1
14:07:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 73 elements, expanding data 2
14:07:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1376 elements, expanding data 1
14:07:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 73 elements, expanding data 2
14:07:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1974 elements, expanding data 1
14:07:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 658 elements, expanding data 2
14:07:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1974 elements, expanding data 1
14:07:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 658 elements, expanding data 2
14:07:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1974 elements, expanding data 1
14:07:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 658 elements, expanding data 2
14:07:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1974 elements, expanding data 1
14:07:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 658 elements, expanding data 2
14:07:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1974 elements, expanding data 1
14:07:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 658 elements, expanding data 2
14:07:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1325 elements, expanding data 1
14:07:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
14:07:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1325 elements, expanding data 1
14:07:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
14:07:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1325 elements, expanding data 1
14:07:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
14:07:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1325 elements, expanding data 1
14:07:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
14:07:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1325 elements, expanding data 1
14:07:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
14:07:40 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 02:00:00, weight 0.23) and
after (2023-09-02 03:00:00, weight 0.77) in time
14:07:40 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.059032091685744 and -58.97306305034623 degrees.
14:07:40 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.059032091685744 and -58.97306305034623 degrees.
14:07:40 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:40 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:40 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:40 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:40 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:40 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:40 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.856593 (min) 1.26638 (max)
14:07:40 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.10832 (min) 0.732687 (max)
14:07:40 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -3.00988e-05 (min) 0.000681147 (max)
14:07:40 DEBUG opendrift.models.basemodel:1524: x_wind: -9.53353 (min) 5.50192 (max)
14:07:40 DEBUG opendrift.models.basemodel:1524: y_wind: -9.22129 (min) 4.36548 (max)
14:07:40 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:40 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:40 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:40 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:40 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:40 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:40 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:40 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.2681 (max)
14:07:40 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:40 DEBUG opendrift.models.basemodel:1527: 2674 active elements
14:07:40 DEBUG opendrift.models.basemodel:1538: 59.103952434026596 <- latitude -> 59.186063039189555
14:07:40 DEBUG opendrift.models.basemodel:1543: 10.940978479555548 <- longitude -> 11.026947496632289
14:07:40 DEBUG opendrift.models.basemodel:1548: -13.558683476182349 <- z -> 0.0
14:07:40 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:40 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:40 DEBUG opendrift.models.physics_methods:1050: min: 0.049796, mean: 3.070864, max: 8.909445
14:07:40 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.049796, mean: 3.070864, max: 8.909445
14:07:40 DEBUG opendrift.models.basemodel:813: 346 elements hit coastline, moving back to water
14:07:40 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
14:07:40 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:40 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:40 DEBUG opendrift.models.physics_methods:828: Advecting 40 of 2674 elements above 0.100m with wind-sheared ocean current (0.007531 m/s - 0.156728 m/s)
14:07:40 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:40 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:40 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09822493448026656
14:07:40 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:40 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:40 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:40 DEBUG opendrift.models.oceandrift:582: 286 elements penetrated seafloor, lifting up
14:07:40 DEBUG opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
14:07:40 DEBUG opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
14:07:40 DEBUG opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
14:07:40 DEBUG opendrift.models.oceandrift:582: 231 elements penetrated seafloor, lifting up
14:07:40 DEBUG opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
14:07:40 DEBUG opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
14:07:40 DEBUG opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
14:07:40 DEBUG opendrift.models.oceandrift:582: 219 elements penetrated seafloor, lifting up
14:07:40 DEBUG opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
14:07:40 DEBUG opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
14:07:40 DEBUG opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
14:07:40 DEBUG opendrift.models.oceandrift:582: 215 elements penetrated seafloor, lifting up
14:07:40 DEBUG opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
14:07:40 DEBUG opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
14:07:40 DEBUG opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
14:07:40 DEBUG opendrift.models.oceandrift:582: 203 elements penetrated seafloor, lifting up
14:07:40 DEBUG opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
14:07:40 DEBUG opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
14:07:40 DEBUG opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
14:07:40 DEBUG opendrift.models.oceandrift:582: 219 elements penetrated seafloor, lifting up
14:07:40 DEBUG opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
14:07:40 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
14:07:40 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
14:07:40 DEBUG opendrift.models.oceandrift:582: 198 elements penetrated seafloor, lifting up
14:07:40 DEBUG opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
14:07:40 DEBUG opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
14:07:40 DEBUG opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
14:07:40 DEBUG opendrift.models.oceandrift:582: 181 elements penetrated seafloor, lifting up
14:07:40 DEBUG opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
14:07:40 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
14:07:40 DEBUG opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
14:07:40 DEBUG opendrift.models.oceandrift:582: 160 elements penetrated seafloor, lifting up
14:07:40 DEBUG opendrift.models.oceandrift:600: 23 elements reached seafloor, set to bottom
14:07:40 DEBUG opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
14:07:40 DEBUG opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
14:07:40 DEBUG opendrift.models.oceandrift:582: 165 elements penetrated seafloor, lifting up
14:07:40 DEBUG opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
14:07:40 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
14:07:40 DEBUG opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
14:07:40 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:40 DEBUG opendrift.models.basemodel:2945: 2674 active elements (0 deactivated)
14:07:40 DEBUG opendrift.models.basemodel:1658: to be seeded: 7326, already seeded 2674
14:07:40 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:07:40 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:40 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:40 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:40 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:40 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:40 DEBUG opendrift.models.basemodel:1253: Data needed for 2709 elements
14:07:40 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:40 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 02:00:00 (before)
2023-09-02 03:00:00 (after)
14:07:40 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 02:00:00) in space (linearNDFast)
14:07:40 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:40 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:40 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:40 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:40 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:40 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:40 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3142 (max)
14:07:40 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:40 DEBUG opendrift.models.basemodel:1527: 2709 active elements
14:07:40 DEBUG opendrift.models.basemodel:1538: 59.10333045843262 <- latitude -> 59.186231022513
14:07:40 DEBUG opendrift.models.basemodel:1543: 10.941146616820681 <- longitude -> 11.027660038992634
14:07:40 DEBUG opendrift.models.basemodel:1548: -14.16669677734375 <- z -> 0.0
14:07:40 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:40 DEBUG opendrift.models.basemodel:836: Lifting 207 elements to seafloor.
14:07:40 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:40 INFO opendrift.models.basemodel:2882: 2023-09-02 02:56:21.121579 - step 78 of 216 - 2709 active elements (0 deactivated)
14:07:40 DEBUG opendrift.models.basemodel:2888: 7291 elements scheduled.
14:07:40 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:40 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:40 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:40 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:40 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:40 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:40 DEBUG opendrift.models.basemodel:1253: Data needed for 2709 elements
14:07:40 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:40 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:40 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:40 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:40 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:40 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:40 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:40 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:40 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:40 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:40 DEBUG opendrift.models.basemodel:1253: Data needed for 2709 elements
14:07:40 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:40 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 02:00:00 (before)
2023-09-02 03:00:00 (after)
14:07:41 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:41 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:41 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:41 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:41 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:41 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:41 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 25x23x5) for time after (2023-09-02 03:00:00)
14:07:41 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 02:00:00) in space (linearNDFast)
14:07:41 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:41 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 03:00:00) in space (linearNDFast)
14:07:41 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1348 elements, expanding data 1
14:07:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1348 elements, expanding data 1
14:07:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1403 elements, expanding data 1
14:07:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 2
14:07:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1403 elements, expanding data 1
14:07:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 2
14:07:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1403 elements, expanding data 1
14:07:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 2
14:07:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1403 elements, expanding data 1
14:07:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 2
14:07:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1403 elements, expanding data 1
14:07:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 2
14:07:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2003 elements, expanding data 1
14:07:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 681 elements, expanding data 2
14:07:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2003 elements, expanding data 1
14:07:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 681 elements, expanding data 2
14:07:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2003 elements, expanding data 1
14:07:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 681 elements, expanding data 2
14:07:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2003 elements, expanding data 1
14:07:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 681 elements, expanding data 2
14:07:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2003 elements, expanding data 1
14:07:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 681 elements, expanding data 2
14:07:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1348 elements, expanding data 1
14:07:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1348 elements, expanding data 1
14:07:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1348 elements, expanding data 1
14:07:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1348 elements, expanding data 1
14:07:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1348 elements, expanding data 1
14:07:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:41 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 02:00:00, weight 0.06) and
after (2023-09-02 03:00:00, weight 0.94) in time
14:07:41 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05886394747738 and -58.97235051813087 degrees.
14:07:41 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05886394747738 and -58.97235051813087 degrees.
14:07:41 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:41 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:41 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:41 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:41 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:41 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:41 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.708884 (min) 1.212 (max)
14:07:41 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.08548 (min) 0.935662 (max)
14:07:41 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -2.94582e-05 (min) 0.000768865 (max)
14:07:41 DEBUG opendrift.models.basemodel:1524: x_wind: -8.48736 (min) 5.74372 (max)
14:07:41 DEBUG opendrift.models.basemodel:1524: y_wind: -9.45915 (min) 4.54937 (max)
14:07:41 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:41 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:41 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:41 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:41 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:41 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:41 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:41 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3142 (max)
14:07:41 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:41 DEBUG opendrift.models.basemodel:1527: 2709 active elements
14:07:41 DEBUG opendrift.models.basemodel:1538: 59.10333045843262 <- latitude -> 59.186231022513
14:07:41 DEBUG opendrift.models.basemodel:1543: 10.941146616820681 <- longitude -> 11.027660038992634
14:07:41 DEBUG opendrift.models.basemodel:1548: -14.160689353942871 <- z -> 0.0
14:07:41 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:41 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:41 DEBUG opendrift.models.physics_methods:1050: min: 0.045242, mean: 3.136553, max: 8.368171
14:07:41 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.045242, mean: 3.136553, max: 8.368171
14:07:41 DEBUG opendrift.models.basemodel:813: 355 elements hit coastline, moving back to water
14:07:41 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:07:41 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:41 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:41 DEBUG opendrift.models.physics_methods:828: Advecting 39 of 2709 elements above 0.100m with wind-sheared ocean current (0.006616 m/s - 0.138149 m/s)
14:07:41 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:41 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:41 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08665305594881058
14:07:41 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:41 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:41 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:41 DEBUG opendrift.models.oceandrift:582: 310 elements penetrated seafloor, lifting up
14:07:41 DEBUG opendrift.models.oceandrift:600: 40 elements reached seafloor, set to bottom
14:07:41 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
14:07:41 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
14:07:41 DEBUG opendrift.models.oceandrift:582: 243 elements penetrated seafloor, lifting up
14:07:41 DEBUG opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
14:07:41 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
14:07:41 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
14:07:41 DEBUG opendrift.models.oceandrift:582: 219 elements penetrated seafloor, lifting up
14:07:41 DEBUG opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
14:07:41 DEBUG opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
14:07:41 DEBUG opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
14:07:41 DEBUG opendrift.models.oceandrift:582: 228 elements penetrated seafloor, lifting up
14:07:41 DEBUG opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
14:07:41 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
14:07:41 DEBUG opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
14:07:41 DEBUG opendrift.models.oceandrift:582: 203 elements penetrated seafloor, lifting up
14:07:41 DEBUG opendrift.models.oceandrift:600: 27 elements reached seafloor, set to bottom
14:07:41 DEBUG opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
14:07:41 DEBUG opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
14:07:41 DEBUG opendrift.models.oceandrift:582: 189 elements penetrated seafloor, lifting up
14:07:41 DEBUG opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
14:07:41 DEBUG opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
14:07:41 DEBUG opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
14:07:41 DEBUG opendrift.models.oceandrift:582: 185 elements penetrated seafloor, lifting up
14:07:41 DEBUG opendrift.models.oceandrift:600: 23 elements reached seafloor, set to bottom
14:07:41 DEBUG opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
14:07:41 DEBUG opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
14:07:41 DEBUG opendrift.models.oceandrift:582: 187 elements penetrated seafloor, lifting up
14:07:41 DEBUG opendrift.models.oceandrift:600: 23 elements reached seafloor, set to bottom
14:07:41 DEBUG opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
14:07:41 DEBUG opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
14:07:41 DEBUG opendrift.models.oceandrift:582: 186 elements penetrated seafloor, lifting up
14:07:41 DEBUG opendrift.models.oceandrift:600: 23 elements reached seafloor, set to bottom
14:07:41 DEBUG opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
14:07:41 DEBUG opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
14:07:41 DEBUG opendrift.models.oceandrift:582: 143 elements penetrated seafloor, lifting up
14:07:41 DEBUG opendrift.models.oceandrift:600: 19 elements reached seafloor, set to bottom
14:07:41 DEBUG opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
14:07:41 DEBUG opendrift.models.sedimentdrift:112: Settling 19 elements at seafloor
14:07:41 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:41 DEBUG opendrift.models.basemodel:2945: 2709 active elements (0 deactivated)
14:07:41 DEBUG opendrift.models.basemodel:1658: to be seeded: 7291, already seeded 2709
14:07:41 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:07:41 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:41 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:41 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:41 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:41 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:41 DEBUG opendrift.models.basemodel:1253: Data needed for 2743 elements
14:07:41 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:41 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 03:00:00 (before)
2023-09-02 04:00:00 (after)
14:07:41 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 03:00:00) in space (linearNDFast)
14:07:41 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:41 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:41 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:41 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:41 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:41 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:41 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3375 (max)
14:07:41 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:41 DEBUG opendrift.models.basemodel:1527: 2743 active elements
14:07:41 DEBUG opendrift.models.basemodel:1538: 59.10330728151432 <- latitude -> 59.185733309917424
14:07:41 DEBUG opendrift.models.basemodel:1543: 10.942914323801244 <- longitude -> 11.030407043821764
14:07:41 DEBUG opendrift.models.basemodel:1548: -13.956078106596332 <- z -> 0.0
14:07:41 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:41 DEBUG opendrift.models.basemodel:836: Lifting 184 elements to seafloor.
14:07:41 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:41 INFO opendrift.models.basemodel:2882: 2023-09-02 03:06:21.121579 - step 79 of 216 - 2743 active elements (0 deactivated)
14:07:41 DEBUG opendrift.models.basemodel:2888: 7257 elements scheduled.
14:07:41 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:41 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:41 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:41 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:41 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:41 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:41 DEBUG opendrift.models.basemodel:1253: Data needed for 2743 elements
14:07:41 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:41 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:41 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:41 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:41 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:41 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:41 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:41 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:41 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:41 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:41 DEBUG opendrift.models.basemodel:1253: Data needed for 2743 elements
14:07:41 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:41 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 03:00:00 (before)
2023-09-02 04:00:00 (after)
14:07:42 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:42 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:42 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:42 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:42 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:42 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:42 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 25x24x5) for time after (2023-09-02 04:00:00)
14:07:42 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 03:00:00) in space (linearNDFast)
14:07:42 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:42 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 04:00:00) in space (linearNDFast)
14:07:42 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1391 elements, expanding data 1
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1391 elements, expanding data 1
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1444 elements, expanding data 1
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 2
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1444 elements, expanding data 1
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 2
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1444 elements, expanding data 1
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 2
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1444 elements, expanding data 1
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 2
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1444 elements, expanding data 1
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 2
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2033 elements, expanding data 1
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 711 elements, expanding data 2
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2033 elements, expanding data 1
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 711 elements, expanding data 2
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2033 elements, expanding data 1
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 711 elements, expanding data 2
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2033 elements, expanding data 1
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 711 elements, expanding data 2
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2033 elements, expanding data 1
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 711 elements, expanding data 2
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1391 elements, expanding data 1
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1391 elements, expanding data 1
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1391 elements, expanding data 1
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1391 elements, expanding data 1
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1391 elements, expanding data 1
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:07:42 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 03:00:00, weight 0.89) and
after (2023-09-02 04:00:00, weight 0.11) in time
14:07:42 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05709622992102 and -58.969603518908265 degrees.
14:07:42 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05709622992102 and -58.969603518908265 degrees.
14:07:42 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:42 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:42 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:42 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:42 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:42 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:42 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.763094 (min) 1.17437 (max)
14:07:42 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.876252 (min) 0.664034 (max)
14:07:42 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -8.78471e-05 (min) 0.000851793 (max)
14:07:42 DEBUG opendrift.models.basemodel:1524: x_wind: -8.49434 (min) 5.50498 (max)
14:07:42 DEBUG opendrift.models.basemodel:1524: y_wind: -10.86 (min) 4.53229 (max)
14:07:42 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:42 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:42 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:42 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:42 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:42 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:42 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:42 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3375 (max)
14:07:42 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:42 DEBUG opendrift.models.basemodel:1527: 2743 active elements
14:07:42 DEBUG opendrift.models.basemodel:1538: 59.10330728151432 <- latitude -> 59.185733309917424
14:07:42 DEBUG opendrift.models.basemodel:1543: 10.942914323801244 <- longitude -> 11.030407043821764
14:07:42 DEBUG opendrift.models.basemodel:1548: -13.956078106596332 <- z -> 0.0
14:07:42 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:42 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:42 DEBUG opendrift.models.physics_methods:1050: min: 0.122862, mean: 3.161242, max: 9.552764
14:07:42 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.122862, mean: 3.161242, max: 9.552764
14:07:42 DEBUG opendrift.models.basemodel:813: 348 elements hit coastline, moving back to water
14:07:42 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:07:42 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:42 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:42 DEBUG opendrift.models.physics_methods:828: Advecting 38 of 2743 elements above 0.100m with wind-sheared ocean current (0.004070 m/s - 0.184478 m/s)
14:07:42 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:42 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:42 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.11292136375339508
14:07:42 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:42 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:42 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:42 DEBUG opendrift.models.oceandrift:582: 304 elements penetrated seafloor, lifting up
14:07:42 DEBUG opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
14:07:42 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
14:07:42 DEBUG opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
14:07:42 DEBUG opendrift.models.oceandrift:582: 260 elements penetrated seafloor, lifting up
14:07:42 DEBUG opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
14:07:42 DEBUG opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
14:07:42 DEBUG opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
14:07:42 DEBUG opendrift.models.oceandrift:582: 219 elements penetrated seafloor, lifting up
14:07:42 DEBUG opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
14:07:42 DEBUG opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
14:07:42 DEBUG opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
14:07:42 DEBUG opendrift.models.oceandrift:582: 206 elements penetrated seafloor, lifting up
14:07:42 DEBUG opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
14:07:42 DEBUG opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
14:07:42 DEBUG opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
14:07:42 DEBUG opendrift.models.oceandrift:582: 193 elements penetrated seafloor, lifting up
14:07:42 DEBUG opendrift.models.oceandrift:600: 27 elements reached seafloor, set to bottom
14:07:42 DEBUG opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
14:07:42 DEBUG opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
14:07:42 DEBUG opendrift.models.oceandrift:582: 210 elements penetrated seafloor, lifting up
14:07:42 DEBUG opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
14:07:42 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
14:07:42 DEBUG opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
14:07:42 DEBUG opendrift.models.oceandrift:582: 188 elements penetrated seafloor, lifting up
14:07:42 DEBUG opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
14:07:42 DEBUG opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
14:07:42 DEBUG opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
14:07:42 DEBUG opendrift.models.oceandrift:582: 185 elements penetrated seafloor, lifting up
14:07:42 DEBUG opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
14:07:42 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
14:07:42 DEBUG opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
14:07:42 DEBUG opendrift.models.oceandrift:582: 192 elements penetrated seafloor, lifting up
14:07:42 DEBUG opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
14:07:42 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
14:07:42 DEBUG opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
14:07:42 DEBUG opendrift.models.oceandrift:582: 194 elements penetrated seafloor, lifting up
14:07:42 DEBUG opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
14:07:42 DEBUG opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
14:07:42 DEBUG opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
14:07:42 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:42 DEBUG opendrift.models.basemodel:2945: 2743 active elements (0 deactivated)
14:07:42 DEBUG opendrift.models.basemodel:1658: to be seeded: 7257, already seeded 2743
14:07:42 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:07:42 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:42 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:42 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:42 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:42 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:42 DEBUG opendrift.models.basemodel:1253: Data needed for 2778 elements
14:07:42 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:42 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 03:00:00 (before)
2023-09-02 04:00:00 (after)
14:07:42 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 03:00:00) in space (linearNDFast)
14:07:42 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:42 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:42 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:42 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:42 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:42 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:42 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3348 (max)
14:07:42 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:42 DEBUG opendrift.models.basemodel:1527: 2778 active elements
14:07:42 DEBUG opendrift.models.basemodel:1538: 59.10360770991957 <- latitude -> 59.18682755340862
14:07:42 DEBUG opendrift.models.basemodel:1543: 10.9425399917302 <- longitude -> 11.028527869516582
14:07:42 DEBUG opendrift.models.basemodel:1548: -14.29580097111694 <- z -> 0.0
14:07:42 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:42 DEBUG opendrift.models.basemodel:836: Lifting 200 elements to seafloor.
14:07:42 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:42 INFO opendrift.models.basemodel:2882: 2023-09-02 03:16:21.121579 - step 80 of 216 - 2778 active elements (0 deactivated)
14:07:42 DEBUG opendrift.models.basemodel:2888: 7222 elements scheduled.
14:07:42 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:42 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:42 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:42 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:42 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:42 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:42 DEBUG opendrift.models.basemodel:1253: Data needed for 2778 elements
14:07:42 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:42 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:42 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:42 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:42 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:42 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:42 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:42 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:42 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:42 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:42 DEBUG opendrift.models.basemodel:1253: Data needed for 2778 elements
14:07:42 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:42 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 03:00:00 (before)
2023-09-02 04:00:00 (after)
14:07:42 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:42 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:42 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:42 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:42 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:42 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:42 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 25x24x5) for time after (2023-09-02 04:00:00)
14:07:42 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 03:00:00) in space (linearNDFast)
14:07:42 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:42 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 04:00:00) in space (linearNDFast)
14:07:42 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1404 elements, expanding data 1
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1404 elements, expanding data 1
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1461 elements, expanding data 1
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 2
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1461 elements, expanding data 1
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 2
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1461 elements, expanding data 1
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 2
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1461 elements, expanding data 1
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 2
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1461 elements, expanding data 1
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 2
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2058 elements, expanding data 1
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 714 elements, expanding data 2
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2058 elements, expanding data 1
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 714 elements, expanding data 2
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2058 elements, expanding data 1
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 714 elements, expanding data 2
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2058 elements, expanding data 1
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 714 elements, expanding data 2
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2058 elements, expanding data 1
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 714 elements, expanding data 2
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1404 elements, expanding data 1
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1404 elements, expanding data 1
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1404 elements, expanding data 1
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1404 elements, expanding data 1
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1404 elements, expanding data 1
14:07:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:42 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 03:00:00, weight 0.73) and
after (2023-09-02 04:00:00, weight 0.27) in time
14:07:42 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05747056122382 and -58.971482691821535 degrees.
14:07:42 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05747056122382 and -58.971482691821535 degrees.
14:07:42 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:42 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:42 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:42 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:42 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:42 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:42 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.852755 (min) 1.21208 (max)
14:07:42 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.24587 (min) 0.855031 (max)
14:07:42 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -3.91948e-05 (min) 0.00076432 (max)
14:07:42 DEBUG opendrift.models.basemodel:1524: x_wind: -8.11339 (min) 6.26835 (max)
14:07:42 DEBUG opendrift.models.basemodel:1524: y_wind: -10.3019 (min) 4.14837 (max)
14:07:42 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:42 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:42 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:42 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:42 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:42 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:42 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:42 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3348 (max)
14:07:42 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:42 DEBUG opendrift.models.basemodel:1527: 2778 active elements
14:07:42 DEBUG opendrift.models.basemodel:1538: 59.10360770991957 <- latitude -> 59.18682755340862
14:07:42 DEBUG opendrift.models.basemodel:1543: 10.9425399917302 <- longitude -> 11.028527869516582
14:07:42 DEBUG opendrift.models.basemodel:1548: -14.29580097111694 <- z -> 0.0
14:07:42 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:42 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:42 DEBUG opendrift.models.physics_methods:1050: min: 0.149181, mean: 3.171949, max: 8.892668
14:07:42 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.149181, mean: 3.171949, max: 8.892668
14:07:42 DEBUG opendrift.models.basemodel:813: 362 elements hit coastline, moving back to water
14:07:42 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:07:42 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:42 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:42 DEBUG opendrift.models.physics_methods:828: Advecting 40 of 2778 elements above 0.100m with wind-sheared ocean current (0.008352 m/s - 0.173303 m/s)
14:07:42 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:42 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:42 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09785534573753356
14:07:42 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:42 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:42 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:42 DEBUG opendrift.models.oceandrift:582: 305 elements penetrated seafloor, lifting up
14:07:42 DEBUG opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
14:07:42 DEBUG opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
14:07:42 DEBUG opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
14:07:42 DEBUG opendrift.models.oceandrift:582: 247 elements penetrated seafloor, lifting up
14:07:42 DEBUG opendrift.models.oceandrift:600: 40 elements reached seafloor, set to bottom
14:07:42 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
14:07:42 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
14:07:42 DEBUG opendrift.models.oceandrift:582: 220 elements penetrated seafloor, lifting up
14:07:42 DEBUG opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
14:07:42 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
14:07:42 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
14:07:42 DEBUG opendrift.models.oceandrift:582: 203 elements penetrated seafloor, lifting up
14:07:42 DEBUG opendrift.models.oceandrift:600: 36 elements reached seafloor, set to bottom
14:07:42 DEBUG opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
14:07:42 DEBUG opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
14:07:42 DEBUG opendrift.models.oceandrift:582: 197 elements penetrated seafloor, lifting up
14:07:42 DEBUG opendrift.models.oceandrift:600: 36 elements reached seafloor, set to bottom
14:07:42 DEBUG opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
14:07:42 DEBUG opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
14:07:42 DEBUG opendrift.models.oceandrift:582: 201 elements penetrated seafloor, lifting up
14:07:42 DEBUG opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
14:07:42 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
14:07:42 DEBUG opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
14:07:42 DEBUG opendrift.models.oceandrift:582: 191 elements penetrated seafloor, lifting up
14:07:42 DEBUG opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
14:07:42 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
14:07:42 DEBUG opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
14:07:42 DEBUG opendrift.models.oceandrift:582: 181 elements penetrated seafloor, lifting up
14:07:42 DEBUG opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
14:07:42 DEBUG opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
14:07:42 DEBUG opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
14:07:42 DEBUG opendrift.models.oceandrift:582: 179 elements penetrated seafloor, lifting up
14:07:42 DEBUG opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
14:07:42 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
14:07:42 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
14:07:43 DEBUG opendrift.models.oceandrift:582: 160 elements penetrated seafloor, lifting up
14:07:43 DEBUG opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
14:07:43 DEBUG opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
14:07:43 DEBUG opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
14:07:43 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:43 DEBUG opendrift.models.basemodel:2945: 2778 active elements (0 deactivated)
14:07:43 DEBUG opendrift.models.basemodel:1658: to be seeded: 7222, already seeded 2778
14:07:43 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:07:43 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:43 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:43 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:43 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:43 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:43 DEBUG opendrift.models.basemodel:1253: Data needed for 2813 elements
14:07:43 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:43 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 03:00:00 (before)
2023-09-02 04:00:00 (after)
14:07:43 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 03:00:00) in space (linearNDFast)
14:07:43 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:43 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:43 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:43 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:43 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:43 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:43 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3105 (max)
14:07:43 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:43 DEBUG opendrift.models.basemodel:1527: 2813 active elements
14:07:43 DEBUG opendrift.models.basemodel:1538: 59.10470504263151 <- latitude -> 59.18571770082049
14:07:43 DEBUG opendrift.models.basemodel:1543: 10.941795791361315 <- longitude -> 11.028748737736912
14:07:43 DEBUG opendrift.models.basemodel:1548: -13.703297843933106 <- z -> 0.0
14:07:43 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:43 DEBUG opendrift.models.basemodel:836: Lifting 212 elements to seafloor.
14:07:43 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:43 INFO opendrift.models.basemodel:2882: 2023-09-02 03:26:21.121579 - step 81 of 216 - 2813 active elements (0 deactivated)
14:07:43 DEBUG opendrift.models.basemodel:2888: 7187 elements scheduled.
14:07:43 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:43 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:43 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:43 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:43 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:43 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:43 DEBUG opendrift.models.basemodel:1253: Data needed for 2813 elements
14:07:43 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:43 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:43 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:43 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:43 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:43 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:43 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:43 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:43 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:43 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:43 DEBUG opendrift.models.basemodel:1253: Data needed for 2813 elements
14:07:43 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:43 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 03:00:00 (before)
2023-09-02 04:00:00 (after)
14:07:43 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:43 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:43 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:43 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:43 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:43 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:43 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 25x24x5) for time after (2023-09-02 04:00:00)
14:07:43 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 03:00:00) in space (linearNDFast)
14:07:43 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:43 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 04:00:00) in space (linearNDFast)
14:07:43 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1413 elements, expanding data 1
14:07:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1413 elements, expanding data 1
14:07:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1480 elements, expanding data 1
14:07:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 2
14:07:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1480 elements, expanding data 1
14:07:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 2
14:07:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1480 elements, expanding data 1
14:07:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 2
14:07:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1480 elements, expanding data 1
14:07:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 2
14:07:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1480 elements, expanding data 1
14:07:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 2
14:07:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2098 elements, expanding data 1
14:07:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 722 elements, expanding data 2
14:07:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2098 elements, expanding data 1
14:07:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 722 elements, expanding data 2
14:07:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2098 elements, expanding data 1
14:07:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 722 elements, expanding data 2
14:07:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2098 elements, expanding data 1
14:07:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 722 elements, expanding data 2
14:07:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2098 elements, expanding data 1
14:07:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 722 elements, expanding data 2
14:07:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1413 elements, expanding data 1
14:07:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1413 elements, expanding data 1
14:07:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1413 elements, expanding data 1
14:07:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1413 elements, expanding data 1
14:07:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1413 elements, expanding data 1
14:07:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:43 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 03:00:00, weight 0.56) and
after (2023-09-02 04:00:00, weight 0.44) in time
14:07:43 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.058214766345216 and -58.971261812015136 degrees.
14:07:43 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.058214766345216 and -58.971261812015136 degrees.
14:07:43 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:43 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:43 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:43 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:43 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:43 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:43 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.748028 (min) 1.09712 (max)
14:07:43 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.02538 (min) 0.697709 (max)
14:07:43 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -8.54205e-05 (min) 0.000952653 (max)
14:07:43 DEBUG opendrift.models.basemodel:1524: x_wind: -7.96644 (min) 5.67496 (max)
14:07:43 DEBUG opendrift.models.basemodel:1524: y_wind: -9.722 (min) 3.51633 (max)
14:07:43 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:43 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:43 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:43 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:43 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:43 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:43 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:43 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3105 (max)
14:07:43 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:43 DEBUG opendrift.models.basemodel:1527: 2813 active elements
14:07:43 DEBUG opendrift.models.basemodel:1538: 59.10470504263151 <- latitude -> 59.18571770082049
14:07:43 DEBUG opendrift.models.basemodel:1543: 10.941795791361315 <- longitude -> 11.028748737736912
14:07:43 DEBUG opendrift.models.basemodel:1548: -13.703297843933106 <- z -> 0.0
14:07:43 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:43 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:43 DEBUG opendrift.models.physics_methods:1050: min: 0.066256, mean: 3.100225, max: 8.313611
14:07:43 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.066256, mean: 3.100225, max: 8.313611
14:07:43 DEBUG opendrift.models.basemodel:813: 336 elements hit coastline, moving back to water
14:07:43 DEBUG opendrift.models.basemodel:836: Lifting 80 elements to seafloor.
14:07:43 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:43 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:43 DEBUG opendrift.models.physics_methods:828: Advecting 39 of 2813 elements above 0.100m with wind-sheared ocean current (0.008089 m/s - 0.128446 m/s)
14:07:43 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:43 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:43 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08552684621246337
14:07:43 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:43 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:43 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:43 DEBUG opendrift.models.oceandrift:582: 300 elements penetrated seafloor, lifting up
14:07:43 DEBUG opendrift.models.oceandrift:600: 27 elements reached seafloor, set to bottom
14:07:43 DEBUG opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
14:07:43 DEBUG opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
14:07:43 DEBUG opendrift.models.oceandrift:582: 258 elements penetrated seafloor, lifting up
14:07:43 DEBUG opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
14:07:43 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
14:07:43 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
14:07:43 DEBUG opendrift.models.oceandrift:582: 216 elements penetrated seafloor, lifting up
14:07:43 DEBUG opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
14:07:43 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
14:07:43 DEBUG opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
14:07:43 DEBUG opendrift.models.oceandrift:582: 216 elements penetrated seafloor, lifting up
14:07:43 DEBUG opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
14:07:43 DEBUG opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
14:07:43 DEBUG opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
14:07:43 DEBUG opendrift.models.oceandrift:582: 222 elements penetrated seafloor, lifting up
14:07:43 DEBUG opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
14:07:43 DEBUG opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
14:07:43 DEBUG opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
14:07:43 DEBUG opendrift.models.oceandrift:582: 210 elements penetrated seafloor, lifting up
14:07:43 DEBUG opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
14:07:43 DEBUG opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
14:07:43 DEBUG opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
14:07:43 DEBUG opendrift.models.oceandrift:582: 196 elements penetrated seafloor, lifting up
14:07:43 DEBUG opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
14:07:43 DEBUG opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
14:07:43 DEBUG opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
14:07:43 DEBUG opendrift.models.oceandrift:582: 194 elements penetrated seafloor, lifting up
14:07:43 DEBUG opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
14:07:43 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
14:07:43 DEBUG opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
14:07:43 DEBUG opendrift.models.oceandrift:582: 209 elements penetrated seafloor, lifting up
14:07:43 DEBUG opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
14:07:43 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
14:07:43 DEBUG opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
14:07:43 DEBUG opendrift.models.oceandrift:582: 204 elements penetrated seafloor, lifting up
14:07:43 DEBUG opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
14:07:43 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
14:07:43 DEBUG opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
14:07:43 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:43 DEBUG opendrift.models.basemodel:2945: 2813 active elements (0 deactivated)
14:07:43 DEBUG opendrift.models.basemodel:1658: to be seeded: 7187, already seeded 2813
14:07:43 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:07:43 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:43 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:43 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:43 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:43 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:43 DEBUG opendrift.models.basemodel:1253: Data needed for 2847 elements
14:07:43 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:43 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 03:00:00 (before)
2023-09-02 04:00:00 (after)
14:07:43 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 03:00:00) in space (linearNDFast)
14:07:43 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:43 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:43 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:43 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:43 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:43 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:43 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.2442 (max)
14:07:43 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:43 DEBUG opendrift.models.basemodel:1527: 2847 active elements
14:07:43 DEBUG opendrift.models.basemodel:1538: 59.10543157102842 <- latitude -> 59.1881422770344
14:07:43 DEBUG opendrift.models.basemodel:1543: 10.941632147113491 <- longitude -> 11.027791813774453
14:07:43 DEBUG opendrift.models.basemodel:1548: -13.704992294311523 <- z -> 0.0
14:07:43 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:43 DEBUG opendrift.models.basemodel:836: Lifting 193 elements to seafloor.
14:07:43 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:43 INFO opendrift.models.basemodel:2882: 2023-09-02 03:36:21.121579 - step 82 of 216 - 2847 active elements (0 deactivated)
14:07:43 DEBUG opendrift.models.basemodel:2888: 7153 elements scheduled.
14:07:43 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:43 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:43 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:43 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:43 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:43 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:43 DEBUG opendrift.models.basemodel:1253: Data needed for 2847 elements
14:07:43 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:43 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:43 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:43 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:43 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:43 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:43 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:43 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:43 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:43 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:43 DEBUG opendrift.models.basemodel:1253: Data needed for 2847 elements
14:07:43 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:43 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 03:00:00 (before)
2023-09-02 04:00:00 (after)
14:07:44 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:44 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:44 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:44 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:44 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:44 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:44 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 25x23x5) for time after (2023-09-02 04:00:00)
14:07:44 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 03:00:00) in space (linearNDFast)
14:07:44 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:44 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 04:00:00) in space (linearNDFast)
14:07:44 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1433 elements, expanding data 1
14:07:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1433 elements, expanding data 1
14:07:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1497 elements, expanding data 1
14:07:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 2
14:07:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:07:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1497 elements, expanding data 1
14:07:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 2
14:07:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:07:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1497 elements, expanding data 1
14:07:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 2
14:07:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:07:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1497 elements, expanding data 1
14:07:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 2
14:07:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:07:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1497 elements, expanding data 1
14:07:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 2
14:07:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:07:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2127 elements, expanding data 1
14:07:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 766 elements, expanding data 2
14:07:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2127 elements, expanding data 1
14:07:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 766 elements, expanding data 2
14:07:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2127 elements, expanding data 1
14:07:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 766 elements, expanding data 2
14:07:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2127 elements, expanding data 1
14:07:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 766 elements, expanding data 2
14:07:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2127 elements, expanding data 1
14:07:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 766 elements, expanding data 2
14:07:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1433 elements, expanding data 1
14:07:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1433 elements, expanding data 1
14:07:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1433 elements, expanding data 1
14:07:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1433 elements, expanding data 1
14:07:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1433 elements, expanding data 1
14:07:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:44 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 03:00:00, weight 0.39) and
after (2023-09-02 04:00:00, weight 0.61) in time
14:07:45 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05837839917124 and -58.97221873831103 degrees.
14:07:45 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05837839917124 and -58.97221873831103 degrees.
14:07:45 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:45 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:45 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:45 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:45 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:45 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:45 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.64403 (min) 1.17475 (max)
14:07:45 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.996501 (min) 0.881022 (max)
14:07:45 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -7.0762e-05 (min) 0.000630352 (max)
14:07:45 DEBUG opendrift.models.basemodel:1524: x_wind: -8.39846 (min) 5.75686 (max)
14:07:45 DEBUG opendrift.models.basemodel:1524: y_wind: -10.1887 (min) 3.39588 (max)
14:07:45 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:45 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:45 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:45 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:45 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:45 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:45 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:45 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.2442 (max)
14:07:45 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:45 DEBUG opendrift.models.basemodel:1527: 2847 active elements
14:07:45 DEBUG opendrift.models.basemodel:1538: 59.10543157102842 <- latitude -> 59.1881422770344
14:07:45 DEBUG opendrift.models.basemodel:1543: 10.941632147113491 <- longitude -> 11.027791813774453
14:07:45 DEBUG opendrift.models.basemodel:1548: -13.704992294311523 <- z -> 0.0
14:07:45 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:45 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:45 DEBUG opendrift.models.physics_methods:1050: min: 0.053268, mean: 3.145035, max: 8.848105
14:07:45 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.053268, mean: 3.145035, max: 8.848105
14:07:45 DEBUG opendrift.models.basemodel:813: 356 elements hit coastline, moving back to water
14:07:45 DEBUG opendrift.models.basemodel:836: Lifting 69 elements to seafloor.
14:07:45 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:45 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:45 DEBUG opendrift.models.physics_methods:828: Advecting 38 of 2847 elements above 0.100m with wind-sheared ocean current (0.004181 m/s - 0.154383 m/s)
14:07:45 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:45 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:45 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09687710567911148
14:07:45 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:45 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:45 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:45 DEBUG opendrift.models.oceandrift:582: 309 elements penetrated seafloor, lifting up
14:07:45 DEBUG opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
14:07:45 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
14:07:45 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
14:07:45 DEBUG opendrift.models.oceandrift:582: 274 elements penetrated seafloor, lifting up
14:07:45 DEBUG opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
14:07:45 DEBUG opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
14:07:45 DEBUG opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
14:07:45 DEBUG opendrift.models.oceandrift:582: 225 elements penetrated seafloor, lifting up
14:07:45 DEBUG opendrift.models.oceandrift:600: 23 elements reached seafloor, set to bottom
14:07:45 DEBUG opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
14:07:45 DEBUG opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
14:07:45 DEBUG opendrift.models.oceandrift:582: 221 elements penetrated seafloor, lifting up
14:07:45 DEBUG opendrift.models.oceandrift:600: 27 elements reached seafloor, set to bottom
14:07:45 DEBUG opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
14:07:45 DEBUG opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
14:07:45 DEBUG opendrift.models.oceandrift:582: 224 elements penetrated seafloor, lifting up
14:07:45 DEBUG opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
14:07:45 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
14:07:45 DEBUG opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
14:07:45 DEBUG opendrift.models.oceandrift:582: 196 elements penetrated seafloor, lifting up
14:07:45 DEBUG opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
14:07:45 DEBUG opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
14:07:45 DEBUG opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
14:07:45 DEBUG opendrift.models.oceandrift:582: 204 elements penetrated seafloor, lifting up
14:07:45 DEBUG opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
14:07:45 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
14:07:45 DEBUG opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
14:07:45 DEBUG opendrift.models.oceandrift:582: 179 elements penetrated seafloor, lifting up
14:07:45 DEBUG opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
14:07:45 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
14:07:45 DEBUG opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
14:07:45 DEBUG opendrift.models.oceandrift:582: 182 elements penetrated seafloor, lifting up
14:07:45 DEBUG opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
14:07:45 DEBUG opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
14:07:45 DEBUG opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
14:07:45 DEBUG opendrift.models.oceandrift:582: 179 elements penetrated seafloor, lifting up
14:07:45 DEBUG opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
14:07:45 DEBUG opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
14:07:45 DEBUG opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
14:07:45 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:45 DEBUG opendrift.models.basemodel:2945: 2847 active elements (0 deactivated)
14:07:45 DEBUG opendrift.models.basemodel:1658: to be seeded: 7153, already seeded 2847
14:07:45 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:07:45 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:45 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:45 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:45 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:45 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:45 DEBUG opendrift.models.basemodel:1253: Data needed for 2882 elements
14:07:45 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:45 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 03:00:00 (before)
2023-09-02 04:00:00 (after)
14:07:45 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 03:00:00) in space (linearNDFast)
14:07:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:45 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:45 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:45 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:45 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:45 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:45 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.2175 (max)
14:07:45 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:45 DEBUG opendrift.models.basemodel:1527: 2882 active elements
14:07:45 DEBUG opendrift.models.basemodel:1538: 59.104521368544326 <- latitude -> 59.18536704303837
14:07:45 DEBUG opendrift.models.basemodel:1543: 10.941692618904101 <- longitude -> 11.02910940466381
14:07:45 DEBUG opendrift.models.basemodel:1548: -13.791167488098145 <- z -> 0.0
14:07:45 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:45 DEBUG opendrift.models.basemodel:836: Lifting 197 elements to seafloor.
14:07:45 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:45 INFO opendrift.models.basemodel:2882: 2023-09-02 03:46:21.121579 - step 83 of 216 - 2882 active elements (0 deactivated)
14:07:45 DEBUG opendrift.models.basemodel:2888: 7118 elements scheduled.
14:07:45 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:45 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:45 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:45 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:45 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:45 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:45 DEBUG opendrift.models.basemodel:1253: Data needed for 2882 elements
14:07:45 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:45 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:45 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:45 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:45 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:45 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:45 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:45 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:45 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:45 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:45 DEBUG opendrift.models.basemodel:1253: Data needed for 2882 elements
14:07:45 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:45 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 03:00:00 (before)
2023-09-02 04:00:00 (after)
14:07:45 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:45 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:45 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:45 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:45 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:45 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:45 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 25x22x5) for time after (2023-09-02 04:00:00)
14:07:45 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 03:00:00) in space (linearNDFast)
14:07:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:45 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 04:00:00) in space (linearNDFast)
14:07:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1456 elements, expanding data 1
14:07:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:07:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1456 elements, expanding data 1
14:07:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:07:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1522 elements, expanding data 1
14:07:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 2
14:07:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:07:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1522 elements, expanding data 1
14:07:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 2
14:07:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:07:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1522 elements, expanding data 1
14:07:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 2
14:07:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:07:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1522 elements, expanding data 1
14:07:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 2
14:07:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:07:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1522 elements, expanding data 1
14:07:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 2
14:07:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:07:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2149 elements, expanding data 1
14:07:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 773 elements, expanding data 2
14:07:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2149 elements, expanding data 1
14:07:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 773 elements, expanding data 2
14:07:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2149 elements, expanding data 1
14:07:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 773 elements, expanding data 2
14:07:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2149 elements, expanding data 1
14:07:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 773 elements, expanding data 2
14:07:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2149 elements, expanding data 1
14:07:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 773 elements, expanding data 2
14:07:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1456 elements, expanding data 1
14:07:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:07:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1456 elements, expanding data 1
14:07:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:07:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1456 elements, expanding data 1
14:07:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:07:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1456 elements, expanding data 1
14:07:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:07:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1456 elements, expanding data 1
14:07:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:07:45 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 03:00:00, weight 0.23) and
after (2023-09-02 04:00:00, weight 0.77) in time
14:07:45 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.058317937727914 and -58.97090115193602 degrees.
14:07:45 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.058317937727914 and -58.97090115193602 degrees.
14:07:45 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:45 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:45 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:45 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:45 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:45 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:45 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.727779 (min) 1.1784 (max)
14:07:45 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.836599 (min) 0.716234 (max)
14:07:45 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -9.41111e-05 (min) 0.00066392 (max)
14:07:45 DEBUG opendrift.models.basemodel:1524: x_wind: -7.54173 (min) 6.53537 (max)
14:07:45 DEBUG opendrift.models.basemodel:1524: y_wind: -9.12012 (min) 4.36503 (max)
14:07:45 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:45 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:45 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:45 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:45 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:45 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:45 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:45 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.2175 (max)
14:07:45 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:45 DEBUG opendrift.models.basemodel:1527: 2882 active elements
14:07:45 DEBUG opendrift.models.basemodel:1538: 59.104521368544326 <- latitude -> 59.18536704303837
14:07:45 DEBUG opendrift.models.basemodel:1543: 10.941692618904101 <- longitude -> 11.02910940466381
14:07:45 DEBUG opendrift.models.basemodel:1548: -13.791167488098145 <- z -> 0.0
14:07:45 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:45 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:45 DEBUG opendrift.models.physics_methods:1050: min: 0.010791, mean: 3.090614, max: 8.156537
14:07:45 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.010791, mean: 3.090614, max: 8.156537
14:07:45 DEBUG opendrift.models.basemodel:813: 370 elements hit coastline, moving back to water
14:07:45 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:45 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:45 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:45 DEBUG opendrift.models.physics_methods:828: Advecting 36 of 2882 elements above 0.100m with wind-sheared ocean current (0.011012 m/s - 0.131799 m/s)
14:07:45 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:45 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:45 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.0823256976366806
14:07:45 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:45 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:45 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:45 DEBUG opendrift.models.oceandrift:582: 316 elements penetrated seafloor, lifting up
14:07:45 DEBUG opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
14:07:45 DEBUG opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
14:07:45 DEBUG opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
14:07:45 DEBUG opendrift.models.oceandrift:582: 251 elements penetrated seafloor, lifting up
14:07:45 DEBUG opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
14:07:45 DEBUG opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
14:07:45 DEBUG opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
14:07:45 DEBUG opendrift.models.oceandrift:582: 217 elements penetrated seafloor, lifting up
14:07:45 DEBUG opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
14:07:45 DEBUG opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
14:07:45 DEBUG opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
14:07:45 DEBUG opendrift.models.oceandrift:582: 223 elements penetrated seafloor, lifting up
14:07:45 DEBUG opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
14:07:45 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
14:07:45 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
14:07:45 DEBUG opendrift.models.oceandrift:582: 196 elements penetrated seafloor, lifting up
14:07:45 DEBUG opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
14:07:45 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
14:07:45 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
14:07:45 DEBUG opendrift.models.oceandrift:582: 208 elements penetrated seafloor, lifting up
14:07:45 DEBUG opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
14:07:45 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
14:07:45 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
14:07:45 DEBUG opendrift.models.oceandrift:582: 194 elements penetrated seafloor, lifting up
14:07:45 DEBUG opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
14:07:45 DEBUG opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
14:07:45 DEBUG opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
14:07:45 DEBUG opendrift.models.oceandrift:582: 194 elements penetrated seafloor, lifting up
14:07:45 DEBUG opendrift.models.oceandrift:600: 27 elements reached seafloor, set to bottom
14:07:45 DEBUG opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
14:07:45 DEBUG opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
14:07:45 DEBUG opendrift.models.oceandrift:582: 185 elements penetrated seafloor, lifting up
14:07:45 DEBUG opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
14:07:45 DEBUG opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
14:07:45 DEBUG opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
14:07:45 DEBUG opendrift.models.oceandrift:582: 187 elements penetrated seafloor, lifting up
14:07:45 DEBUG opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
14:07:45 DEBUG opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
14:07:45 DEBUG opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
14:07:45 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:45 DEBUG opendrift.models.basemodel:2945: 2882 active elements (0 deactivated)
14:07:45 DEBUG opendrift.models.basemodel:1658: to be seeded: 7118, already seeded 2882
14:07:45 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:07:45 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:45 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:45 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:45 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:45 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:45 DEBUG opendrift.models.basemodel:1253: Data needed for 2917 elements
14:07:45 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:45 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 03:00:00 (before)
2023-09-02 04:00:00 (after)
14:07:45 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 03:00:00) in space (linearNDFast)
14:07:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:45 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:45 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:45 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:45 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:45 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:45 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.2406 (max)
14:07:45 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:45 DEBUG opendrift.models.basemodel:1527: 2917 active elements
14:07:45 DEBUG opendrift.models.basemodel:1538: 59.105371467394285 <- latitude -> 59.184558528731074
14:07:45 DEBUG opendrift.models.basemodel:1543: 10.94191069392169 <- longitude -> 11.031412508864511
14:07:45 DEBUG opendrift.models.basemodel:1548: -15.21751594543457 <- z -> 0.0
14:07:45 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:45 DEBUG opendrift.models.basemodel:836: Lifting 225 elements to seafloor.
14:07:45 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:45 INFO opendrift.models.basemodel:2882: 2023-09-02 03:56:21.121579 - step 84 of 216 - 2917 active elements (0 deactivated)
14:07:45 DEBUG opendrift.models.basemodel:2888: 7083 elements scheduled.
14:07:45 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:45 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:45 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:45 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:45 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:45 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:45 DEBUG opendrift.models.basemodel:1253: Data needed for 2917 elements
14:07:45 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:45 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:45 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:45 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:45 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:45 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:45 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:45 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:45 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:45 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:45 DEBUG opendrift.models.basemodel:1253: Data needed for 2917 elements
14:07:45 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:45 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 03:00:00 (before)
2023-09-02 04:00:00 (after)
14:07:46 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:46 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:46 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:46 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:46 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:46 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:46 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 25x23x6) for time after (2023-09-02 04:00:00)
14:07:46 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 03:00:00) in space (linearNDFast)
14:07:46 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:46 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 04:00:00) in space (linearNDFast)
14:07:46 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1490 elements, expanding data 1
14:07:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:07:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1490 elements, expanding data 1
14:07:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:07:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1559 elements, expanding data 1
14:07:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 2
14:07:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1559 elements, expanding data 1
14:07:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 2
14:07:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1559 elements, expanding data 1
14:07:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 2
14:07:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1559 elements, expanding data 1
14:07:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 2
14:07:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1559 elements, expanding data 1
14:07:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 2
14:07:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1559 elements, expanding data 1
14:07:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 2
14:07:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2190 elements, expanding data 1
14:07:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 793 elements, expanding data 2
14:07:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2190 elements, expanding data 1
14:07:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 793 elements, expanding data 2
14:07:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2190 elements, expanding data 1
14:07:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 793 elements, expanding data 2
14:07:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2190 elements, expanding data 1
14:07:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 793 elements, expanding data 2
14:07:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2190 elements, expanding data 1
14:07:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 793 elements, expanding data 2
14:07:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2190 elements, expanding data 1
14:07:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 793 elements, expanding data 2
14:07:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1490 elements, expanding data 1
14:07:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:07:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1490 elements, expanding data 1
14:07:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:07:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1490 elements, expanding data 1
14:07:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:07:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1490 elements, expanding data 1
14:07:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:07:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1490 elements, expanding data 1
14:07:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:07:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1490 elements, expanding data 1
14:07:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:07:46 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 03:00:00, weight 0.06) and
after (2023-09-02 04:00:00, weight 0.94) in time
14:07:46 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.058099864576484 and -58.96859804531784 degrees.
14:07:46 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.058099864576484 and -58.96859804531784 degrees.
14:07:46 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:46 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:46 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:46 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:46 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:46 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:46 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.78703 (min) 1.15738 (max)
14:07:46 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.06672 (min) 0.668032 (max)
14:07:46 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -9.45333e-05 (min) 0.000907094 (max)
14:07:46 DEBUG opendrift.models.basemodel:1524: x_wind: -8.24146 (min) 5.59619 (max)
14:07:46 DEBUG opendrift.models.basemodel:1524: y_wind: -9.34766 (min) 4.34743 (max)
14:07:46 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:46 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:46 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:46 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:46 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:46 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:46 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:46 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.2406 (max)
14:07:46 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:46 DEBUG opendrift.models.basemodel:1527: 2917 active elements
14:07:46 DEBUG opendrift.models.basemodel:1538: 59.105371467394285 <- latitude -> 59.184558528731074
14:07:46 DEBUG opendrift.models.basemodel:1543: 10.94191069392169 <- longitude -> 11.031412508864511
14:07:46 DEBUG opendrift.models.basemodel:1548: -15.21751594543457 <- z -> 0.0
14:07:46 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:46 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:46 DEBUG opendrift.models.physics_methods:1050: min: 0.021906, mean: 3.061433, max: 8.069289
14:07:46 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.021906, mean: 3.061433, max: 8.069289
14:07:46 DEBUG opendrift.models.basemodel:813: 358 elements hit coastline, moving back to water
14:07:46 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:07:46 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:46 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:46 DEBUG opendrift.models.physics_methods:828: Advecting 41 of 2917 elements above 0.100m with wind-sheared ocean current (0.002696 m/s - 0.133829 m/s)
14:07:46 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:46 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:46 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.0805740110145378
14:07:46 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:46 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:46 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:46 DEBUG opendrift.models.oceandrift:582: 301 elements penetrated seafloor, lifting up
14:07:46 DEBUG opendrift.models.oceandrift:600: 36 elements reached seafloor, set to bottom
14:07:46 DEBUG opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
14:07:46 DEBUG opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
14:07:46 DEBUG opendrift.models.oceandrift:582: 244 elements penetrated seafloor, lifting up
14:07:46 DEBUG opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
14:07:46 DEBUG opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
14:07:46 DEBUG opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
14:07:46 DEBUG opendrift.models.oceandrift:582: 241 elements penetrated seafloor, lifting up
14:07:46 DEBUG opendrift.models.oceandrift:600: 27 elements reached seafloor, set to bottom
14:07:46 DEBUG opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
14:07:46 DEBUG opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
14:07:46 DEBUG opendrift.models.oceandrift:582: 219 elements penetrated seafloor, lifting up
14:07:46 DEBUG opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
14:07:46 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
14:07:46 DEBUG opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
14:07:46 DEBUG opendrift.models.oceandrift:582: 214 elements penetrated seafloor, lifting up
14:07:46 DEBUG opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
14:07:46 DEBUG opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
14:07:46 DEBUG opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
14:07:46 DEBUG opendrift.models.oceandrift:582: 191 elements penetrated seafloor, lifting up
14:07:46 DEBUG opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
14:07:46 DEBUG opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
14:07:46 DEBUG opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
14:07:46 DEBUG opendrift.models.oceandrift:582: 208 elements penetrated seafloor, lifting up
14:07:46 DEBUG opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
14:07:46 DEBUG opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
14:07:46 DEBUG opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
14:07:46 DEBUG opendrift.models.oceandrift:582: 198 elements penetrated seafloor, lifting up
14:07:46 DEBUG opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
14:07:46 DEBUG opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
14:07:46 DEBUG opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
14:07:46 DEBUG opendrift.models.oceandrift:582: 189 elements penetrated seafloor, lifting up
14:07:46 DEBUG opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
14:07:46 DEBUG opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
14:07:46 DEBUG opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
14:07:46 DEBUG opendrift.models.oceandrift:582: 181 elements penetrated seafloor, lifting up
14:07:46 DEBUG opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
14:07:46 DEBUG opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
14:07:46 DEBUG opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
14:07:46 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:46 DEBUG opendrift.models.basemodel:2945: 2917 active elements (0 deactivated)
14:07:46 DEBUG opendrift.models.basemodel:1658: to be seeded: 7083, already seeded 2917
14:07:46 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:07:46 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:46 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:46 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:46 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:46 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:46 DEBUG opendrift.models.basemodel:1253: Data needed for 2952 elements
14:07:46 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:46 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 04:00:00 (before)
2023-09-02 05:00:00 (after)
14:07:46 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 04:00:00) in space (linearNDFast)
14:07:46 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:46 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:46 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:46 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:46 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:46 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:46 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.2406 (max)
14:07:46 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:46 DEBUG opendrift.models.basemodel:1527: 2952 active elements
14:07:46 DEBUG opendrift.models.basemodel:1538: 59.10505253890844 <- latitude -> 59.18595615279563
14:07:46 DEBUG opendrift.models.basemodel:1543: 10.940978469019587 <- longitude -> 11.033651778514049
14:07:46 DEBUG opendrift.models.basemodel:1548: -15.21751594543457 <- z -> 0.0
14:07:46 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:46 DEBUG opendrift.models.basemodel:836: Lifting 203 elements to seafloor.
14:07:46 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:46 INFO opendrift.models.basemodel:2882: 2023-09-02 04:06:21.121579 - step 85 of 216 - 2952 active elements (0 deactivated)
14:07:46 DEBUG opendrift.models.basemodel:2888: 7048 elements scheduled.
14:07:46 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:46 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:46 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:46 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:46 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:46 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:46 DEBUG opendrift.models.basemodel:1253: Data needed for 2952 elements
14:07:46 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:46 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:46 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:46 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:46 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:46 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:46 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:46 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:46 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:46 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:46 DEBUG opendrift.models.basemodel:1253: Data needed for 2952 elements
14:07:46 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:46 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 04:00:00 (before)
2023-09-02 05:00:00 (after)
14:07:47 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:47 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:47 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:47 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:47 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:47 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:47 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 25x23x6) for time after (2023-09-02 05:00:00)
14:07:47 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 04:00:00) in space (linearNDFast)
14:07:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:47 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 05:00:00) in space (linearNDFast)
14:07:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1505 elements, expanding data 1
14:07:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:07:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1505 elements, expanding data 1
14:07:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:07:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1575 elements, expanding data 1
14:07:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 73 elements, expanding data 2
14:07:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:07:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1575 elements, expanding data 1
14:07:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 73 elements, expanding data 2
14:07:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:07:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1575 elements, expanding data 1
14:07:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 73 elements, expanding data 2
14:07:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:07:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1575 elements, expanding data 1
14:07:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 73 elements, expanding data 2
14:07:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:07:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1575 elements, expanding data 1
14:07:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 73 elements, expanding data 2
14:07:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:07:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1575 elements, expanding data 1
14:07:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 73 elements, expanding data 2
14:07:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:07:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2220 elements, expanding data 1
14:07:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 806 elements, expanding data 2
14:07:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2220 elements, expanding data 1
14:07:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 806 elements, expanding data 2
14:07:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2220 elements, expanding data 1
14:07:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 806 elements, expanding data 2
14:07:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2220 elements, expanding data 1
14:07:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 806 elements, expanding data 2
14:07:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2220 elements, expanding data 1
14:07:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 806 elements, expanding data 2
14:07:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2220 elements, expanding data 1
14:07:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 806 elements, expanding data 2
14:07:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1505 elements, expanding data 1
14:07:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:07:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1505 elements, expanding data 1
14:07:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:07:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1505 elements, expanding data 1
14:07:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:07:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1505 elements, expanding data 1
14:07:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:07:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1505 elements, expanding data 1
14:07:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:07:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1505 elements, expanding data 1
14:07:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:07:47 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 04:00:00, weight 0.89) and
after (2023-09-02 05:00:00, weight 0.11) in time
14:07:47 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05903208901489 and -58.966358775384805 degrees.
14:07:47 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05903208901489 and -58.966358775384805 degrees.
14:07:47 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:47 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:47 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:47 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:47 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:47 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:47 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.84912 (min) 1.27299 (max)
14:07:47 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.974747 (min) 0.797728 (max)
14:07:47 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -7.85638e-05 (min) 0.000684089 (max)
14:07:47 DEBUG opendrift.models.basemodel:1524: x_wind: -8.02597 (min) 5.79573 (max)
14:07:47 DEBUG opendrift.models.basemodel:1524: y_wind: -10.716 (min) 3.78493 (max)
14:07:47 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:47 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:47 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:47 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:47 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:47 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:47 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:47 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.2406 (max)
14:07:47 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:47 DEBUG opendrift.models.basemodel:1527: 2952 active elements
14:07:47 DEBUG opendrift.models.basemodel:1538: 59.10505253890844 <- latitude -> 59.18595615279563
14:07:47 DEBUG opendrift.models.basemodel:1543: 10.940978469019587 <- longitude -> 11.033651778514049
14:07:47 DEBUG opendrift.models.basemodel:1548: -15.21751594543457 <- z -> 0.0
14:07:47 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:47 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:47 DEBUG opendrift.models.physics_methods:1050: min: 0.019383, mean: 3.046498, max: 9.565572
14:07:47 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.019383, mean: 3.046498, max: 9.565572
14:07:47 DEBUG opendrift.models.basemodel:813: 393 elements hit coastline, moving back to water
14:07:47 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:07:47 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:47 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:47 DEBUG opendrift.models.physics_methods:828: Advecting 36 of 2952 elements above 0.100m with wind-sheared ocean current (0.018584 m/s - 0.126930 m/s)
14:07:47 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:47 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:47 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.11322438291366577
14:07:47 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:47 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:47 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:47 DEBUG opendrift.models.oceandrift:582: 300 elements penetrated seafloor, lifting up
14:07:47 DEBUG opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
14:07:47 DEBUG opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
14:07:47 DEBUG opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
14:07:47 DEBUG opendrift.models.oceandrift:582: 224 elements penetrated seafloor, lifting up
14:07:47 DEBUG opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
14:07:47 DEBUG opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
14:07:47 DEBUG opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
14:07:47 DEBUG opendrift.models.oceandrift:582: 220 elements penetrated seafloor, lifting up
14:07:47 DEBUG opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
14:07:47 DEBUG opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
14:07:47 DEBUG opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
14:07:47 DEBUG opendrift.models.oceandrift:582: 198 elements penetrated seafloor, lifting up
14:07:47 DEBUG opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
14:07:47 DEBUG opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
14:07:47 DEBUG opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
14:07:47 DEBUG opendrift.models.oceandrift:582: 203 elements penetrated seafloor, lifting up
14:07:47 DEBUG opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
14:07:47 DEBUG opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
14:07:48 DEBUG opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
14:07:48 DEBUG opendrift.models.oceandrift:582: 203 elements penetrated seafloor, lifting up
14:07:48 DEBUG opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
14:07:48 DEBUG opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
14:07:48 DEBUG opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
14:07:48 DEBUG opendrift.models.oceandrift:582: 213 elements penetrated seafloor, lifting up
14:07:48 DEBUG opendrift.models.oceandrift:600: 23 elements reached seafloor, set to bottom
14:07:48 DEBUG opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
14:07:48 DEBUG opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
14:07:48 DEBUG opendrift.models.oceandrift:582: 203 elements penetrated seafloor, lifting up
14:07:48 DEBUG opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
14:07:48 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
14:07:48 DEBUG opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
14:07:48 DEBUG opendrift.models.oceandrift:582: 181 elements penetrated seafloor, lifting up
14:07:48 DEBUG opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
14:07:48 DEBUG opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
14:07:48 DEBUG opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
14:07:48 DEBUG opendrift.models.oceandrift:582: 198 elements penetrated seafloor, lifting up
14:07:48 DEBUG opendrift.models.oceandrift:600: 23 elements reached seafloor, set to bottom
14:07:48 DEBUG opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
14:07:48 DEBUG opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
14:07:48 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:48 DEBUG opendrift.models.basemodel:2945: 2952 active elements (0 deactivated)
14:07:48 DEBUG opendrift.models.basemodel:1658: to be seeded: 7048, already seeded 2952
14:07:48 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:07:48 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:48 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:48 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:48 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:48 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:48 DEBUG opendrift.models.basemodel:1253: Data needed for 2986 elements
14:07:48 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:48 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 04:00:00 (before)
2023-09-02 05:00:00 (after)
14:07:48 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 04:00:00) in space (linearNDFast)
14:07:48 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:48 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:48 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:48 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:48 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:48 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:48 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.2406 (max)
14:07:48 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:48 DEBUG opendrift.models.basemodel:1527: 2986 active elements
14:07:48 DEBUG opendrift.models.basemodel:1538: 59.104690046945905 <- latitude -> 59.18774306916933
14:07:48 DEBUG opendrift.models.basemodel:1543: 10.941409823596402 <- longitude -> 11.030107121601038
14:07:48 DEBUG opendrift.models.basemodel:1548: -15.21751594543457 <- z -> 0.0
14:07:48 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:48 DEBUG opendrift.models.basemodel:836: Lifting 218 elements to seafloor.
14:07:48 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:48 INFO opendrift.models.basemodel:2882: 2023-09-02 04:16:21.121579 - step 86 of 216 - 2986 active elements (0 deactivated)
14:07:48 DEBUG opendrift.models.basemodel:2888: 7014 elements scheduled.
14:07:48 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:48 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:48 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:48 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:48 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:48 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:48 DEBUG opendrift.models.basemodel:1253: Data needed for 2986 elements
14:07:48 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:48 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:48 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:48 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:48 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:48 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:48 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:48 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:48 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:48 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:48 DEBUG opendrift.models.basemodel:1253: Data needed for 2986 elements
14:07:48 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:48 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 04:00:00 (before)
2023-09-02 05:00:00 (after)
14:07:48 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:48 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:48 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:48 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:48 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:48 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:48 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 24x23x6) for time after (2023-09-02 05:00:00)
14:07:48 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 04:00:00) in space (linearNDFast)
14:07:48 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:48 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 05:00:00) in space (linearNDFast)
14:07:48 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1525 elements, expanding data 1
14:07:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1525 elements, expanding data 1
14:07:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1593 elements, expanding data 1
14:07:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 2
14:07:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:07:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1593 elements, expanding data 1
14:07:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 2
14:07:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:07:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1593 elements, expanding data 1
14:07:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 2
14:07:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:07:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1593 elements, expanding data 1
14:07:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 2
14:07:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:07:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1593 elements, expanding data 1
14:07:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 2
14:07:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:07:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1593 elements, expanding data 1
14:07:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 2
14:07:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:07:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2222 elements, expanding data 1
14:07:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 854 elements, expanding data 2
14:07:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2222 elements, expanding data 1
14:07:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 854 elements, expanding data 2
14:07:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2222 elements, expanding data 1
14:07:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 854 elements, expanding data 2
14:07:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2222 elements, expanding data 1
14:07:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 854 elements, expanding data 2
14:07:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2222 elements, expanding data 1
14:07:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 854 elements, expanding data 2
14:07:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2222 elements, expanding data 1
14:07:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 854 elements, expanding data 2
14:07:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1525 elements, expanding data 1
14:07:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1525 elements, expanding data 1
14:07:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1525 elements, expanding data 1
14:07:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1525 elements, expanding data 1
14:07:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1525 elements, expanding data 1
14:07:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1525 elements, expanding data 1
14:07:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:48 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 04:00:00, weight 0.73) and
after (2023-09-02 05:00:00, weight 0.27) in time
14:07:48 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.058600738374615 and -58.9699034374505 degrees.
14:07:48 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.058600738374615 and -58.9699034374505 degrees.
14:07:48 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:48 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:48 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:48 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:48 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:48 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:48 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.704498 (min) 1.48521 (max)
14:07:48 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.12215 (min) 0.69236 (max)
14:07:48 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000115776 (min) 0.000763865 (max)
14:07:48 DEBUG opendrift.models.basemodel:1524: x_wind: -7.49228 (min) 5.97889 (max)
14:07:48 DEBUG opendrift.models.basemodel:1524: y_wind: -9.22012 (min) 4.37817 (max)
14:07:48 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:48 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:48 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:48 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:48 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:48 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:48 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:48 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.2406 (max)
14:07:48 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:48 DEBUG opendrift.models.basemodel:1527: 2986 active elements
14:07:48 DEBUG opendrift.models.basemodel:1538: 59.104690046945905 <- latitude -> 59.18774306916933
14:07:48 DEBUG opendrift.models.basemodel:1543: 10.941409823596402 <- longitude -> 11.030107121601038
14:07:48 DEBUG opendrift.models.basemodel:1548: -15.21751594543457 <- z -> 0.0
14:07:48 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:48 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:48 DEBUG opendrift.models.physics_methods:1050: min: 0.091854, mean: 2.878470, max: 8.887098
14:07:48 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.091854, mean: 2.878470, max: 8.887098
14:07:48 DEBUG opendrift.models.basemodel:813: 405 elements hit coastline, moving back to water
14:07:48 DEBUG opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
14:07:48 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:48 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:48 DEBUG opendrift.models.physics_methods:828: Advecting 35 of 2986 elements above 0.100m with wind-sheared ocean current (0.017839 m/s - 0.148378 m/s)
14:07:48 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:48 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:48 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09773281745155334
14:07:48 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:48 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:48 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:48 DEBUG opendrift.models.oceandrift:582: 338 elements penetrated seafloor, lifting up
14:07:48 DEBUG opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
14:07:48 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
14:07:48 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
14:07:48 DEBUG opendrift.models.oceandrift:582: 234 elements penetrated seafloor, lifting up
14:07:48 DEBUG opendrift.models.oceandrift:600: 44 elements reached seafloor, set to bottom
14:07:48 DEBUG opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
14:07:48 DEBUG opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
14:07:48 DEBUG opendrift.models.oceandrift:582: 223 elements penetrated seafloor, lifting up
14:07:48 DEBUG opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
14:07:48 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
14:07:48 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
14:07:48 DEBUG opendrift.models.oceandrift:582: 204 elements penetrated seafloor, lifting up
14:07:48 DEBUG opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
14:07:48 DEBUG opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
14:07:48 DEBUG opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
14:07:48 DEBUG opendrift.models.oceandrift:582: 236 elements penetrated seafloor, lifting up
14:07:48 DEBUG opendrift.models.oceandrift:600: 40 elements reached seafloor, set to bottom
14:07:48 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
14:07:48 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
14:07:48 DEBUG opendrift.models.oceandrift:582: 217 elements penetrated seafloor, lifting up
14:07:48 DEBUG opendrift.models.oceandrift:600: 36 elements reached seafloor, set to bottom
14:07:48 DEBUG opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
14:07:48 DEBUG opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
14:07:48 DEBUG opendrift.models.oceandrift:582: 200 elements penetrated seafloor, lifting up
14:07:48 DEBUG opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
14:07:48 DEBUG opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
14:07:48 DEBUG opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
14:07:48 DEBUG opendrift.models.oceandrift:582: 205 elements penetrated seafloor, lifting up
14:07:48 DEBUG opendrift.models.oceandrift:600: 23 elements reached seafloor, set to bottom
14:07:48 DEBUG opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
14:07:48 DEBUG opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
14:07:48 DEBUG opendrift.models.oceandrift:582: 177 elements penetrated seafloor, lifting up
14:07:48 DEBUG opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
14:07:48 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
14:07:48 DEBUG opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
14:07:48 DEBUG opendrift.models.oceandrift:582: 197 elements penetrated seafloor, lifting up
14:07:48 DEBUG opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
14:07:48 DEBUG opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
14:07:48 DEBUG opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
14:07:48 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:48 DEBUG opendrift.models.basemodel:2945: 2986 active elements (0 deactivated)
14:07:48 DEBUG opendrift.models.basemodel:1658: to be seeded: 7014, already seeded 2986
14:07:48 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:07:48 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:48 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:48 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:48 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:48 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:48 DEBUG opendrift.models.basemodel:1253: Data needed for 3021 elements
14:07:48 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:48 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 04:00:00 (before)
2023-09-02 05:00:00 (after)
14:07:48 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 04:00:00) in space (linearNDFast)
14:07:48 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:48 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:48 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:48 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:48 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:48 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:48 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.2406 (max)
14:07:48 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:48 DEBUG opendrift.models.basemodel:1527: 3021 active elements
14:07:48 DEBUG opendrift.models.basemodel:1538: 59.1041858479806 <- latitude -> 59.18690340359526
14:07:48 DEBUG opendrift.models.basemodel:1543: 10.94287428758379 <- longitude -> 11.02970496865111
14:07:48 DEBUG opendrift.models.basemodel:1548: -15.20751594543457 <- z -> 0.0
14:07:48 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:48 DEBUG opendrift.models.basemodel:836: Lifting 241 elements to seafloor.
14:07:48 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:48 INFO opendrift.models.basemodel:2882: 2023-09-02 04:26:21.121579 - step 87 of 216 - 3021 active elements (0 deactivated)
14:07:48 DEBUG opendrift.models.basemodel:2888: 6979 elements scheduled.
14:07:48 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:48 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:48 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:48 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:48 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:48 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:48 DEBUG opendrift.models.basemodel:1253: Data needed for 3021 elements
14:07:48 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:48 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:48 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:48 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:48 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:48 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:48 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:48 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:48 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:48 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:48 DEBUG opendrift.models.basemodel:1253: Data needed for 3021 elements
14:07:48 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:48 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 04:00:00 (before)
2023-09-02 05:00:00 (after)
14:07:49 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:49 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:49 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:49 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:49 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:49 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:49 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 25x22x6) for time after (2023-09-02 05:00:00)
14:07:49 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 04:00:00) in space (linearNDFast)
14:07:49 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:49 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 05:00:00) in space (linearNDFast)
14:07:49 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1564 elements, expanding data 1
14:07:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:07:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1564 elements, expanding data 1
14:07:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:07:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1633 elements, expanding data 1
14:07:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 2
14:07:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:07:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1633 elements, expanding data 1
14:07:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 2
14:07:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:07:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1633 elements, expanding data 1
14:07:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 2
14:07:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:07:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1633 elements, expanding data 1
14:07:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 2
14:07:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:07:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1633 elements, expanding data 1
14:07:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 2
14:07:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:07:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1633 elements, expanding data 1
14:07:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 2
14:07:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:07:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2257 elements, expanding data 1
14:07:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 865 elements, expanding data 2
14:07:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2257 elements, expanding data 1
14:07:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 865 elements, expanding data 2
14:07:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2257 elements, expanding data 1
14:07:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 865 elements, expanding data 2
14:07:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2257 elements, expanding data 1
14:07:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 865 elements, expanding data 2
14:07:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2257 elements, expanding data 1
14:07:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 865 elements, expanding data 2
14:07:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2257 elements, expanding data 1
14:07:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 865 elements, expanding data 2
14:07:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1564 elements, expanding data 1
14:07:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:07:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1564 elements, expanding data 1
14:07:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:07:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1564 elements, expanding data 1
14:07:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:07:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1564 elements, expanding data 1
14:07:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:07:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1564 elements, expanding data 1
14:07:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:07:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1564 elements, expanding data 1
14:07:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:07:49 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 04:00:00, weight 0.56) and
after (2023-09-02 05:00:00, weight 0.44) in time
14:07:49 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05713626031417 and -58.97030557454164 degrees.
14:07:49 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05713626031417 and -58.97030557454164 degrees.
14:07:49 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:49 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:49 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:49 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:49 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:49 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:49 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.841003 (min) 1.01406 (max)
14:07:49 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.929322 (min) 0.730655 (max)
14:07:49 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000109571 (min) 0.000657876 (max)
14:07:49 DEBUG opendrift.models.basemodel:1524: x_wind: -6.92904 (min) 7.73244 (max)
14:07:49 DEBUG opendrift.models.basemodel:1524: y_wind: -8.58208 (min) 4.08601 (max)
14:07:49 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:49 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:49 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:49 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:49 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:49 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:49 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:49 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.2406 (max)
14:07:49 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:49 DEBUG opendrift.models.basemodel:1527: 3021 active elements
14:07:49 DEBUG opendrift.models.basemodel:1538: 59.1041858479806 <- latitude -> 59.18690340359526
14:07:49 DEBUG opendrift.models.basemodel:1543: 10.94287428758379 <- longitude -> 11.02970496865111
14:07:49 DEBUG opendrift.models.basemodel:1548: -15.20751594543457 <- z -> 0.0
14:07:49 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:49 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:49 DEBUG opendrift.models.physics_methods:1050: min: 0.033801, mean: 2.816024, max: 7.560846
14:07:49 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.033801, mean: 2.816024, max: 7.560846
14:07:49 DEBUG opendrift.models.basemodel:813: 386 elements hit coastline, moving back to water
14:07:49 DEBUG opendrift.models.basemodel:836: Lifting 100 elements to seafloor.
14:07:49 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:49 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:49 DEBUG opendrift.models.physics_methods:828: Advecting 42 of 3021 elements above 0.100m with wind-sheared ocean current (0.008291 m/s - 0.142549 m/s)
14:07:49 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:49 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:49 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07074051578195571
14:07:49 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:49 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:49 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:49 DEBUG opendrift.models.oceandrift:582: 308 elements penetrated seafloor, lifting up
14:07:49 DEBUG opendrift.models.oceandrift:600: 56 elements reached seafloor, set to bottom
14:07:49 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
14:07:49 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
14:07:49 DEBUG opendrift.models.oceandrift:582: 256 elements penetrated seafloor, lifting up
14:07:49 DEBUG opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
14:07:49 DEBUG opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
14:07:49 DEBUG opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
14:07:49 DEBUG opendrift.models.oceandrift:582: 217 elements penetrated seafloor, lifting up
14:07:49 DEBUG opendrift.models.oceandrift:600: 29 elements reached seafloor, set to bottom
14:07:49 DEBUG opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
14:07:49 DEBUG opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
14:07:49 DEBUG opendrift.models.oceandrift:582: 222 elements penetrated seafloor, lifting up
14:07:49 DEBUG opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
14:07:49 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
14:07:49 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
14:07:49 DEBUG opendrift.models.oceandrift:582: 213 elements penetrated seafloor, lifting up
14:07:49 DEBUG opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
14:07:49 DEBUG opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
14:07:49 DEBUG opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
14:07:49 DEBUG opendrift.models.oceandrift:582: 207 elements penetrated seafloor, lifting up
14:07:49 DEBUG opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
14:07:49 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
14:07:49 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
14:07:49 DEBUG opendrift.models.oceandrift:582: 175 elements penetrated seafloor, lifting up
14:07:49 DEBUG opendrift.models.oceandrift:600: 27 elements reached seafloor, set to bottom
14:07:49 DEBUG opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
14:07:49 DEBUG opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
14:07:49 DEBUG opendrift.models.oceandrift:582: 178 elements penetrated seafloor, lifting up
14:07:49 DEBUG opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
14:07:49 DEBUG opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
14:07:49 DEBUG opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
14:07:49 DEBUG opendrift.models.oceandrift:582: 176 elements penetrated seafloor, lifting up
14:07:49 DEBUG opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
14:07:49 DEBUG opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
14:07:49 DEBUG opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
14:07:49 DEBUG opendrift.models.oceandrift:582: 168 elements penetrated seafloor, lifting up
14:07:49 DEBUG opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
14:07:49 DEBUG opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
14:07:49 DEBUG opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
14:07:49 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:49 DEBUG opendrift.models.basemodel:2945: 3021 active elements (0 deactivated)
14:07:49 DEBUG opendrift.models.basemodel:1658: to be seeded: 6979, already seeded 3021
14:07:49 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:07:49 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:49 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:49 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:49 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:49 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:49 DEBUG opendrift.models.basemodel:1253: Data needed for 3056 elements
14:07:49 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:49 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 04:00:00 (before)
2023-09-02 05:00:00 (after)
14:07:49 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 04:00:00) in space (linearNDFast)
14:07:49 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:49 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:49 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:49 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:49 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:49 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:49 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.2092 (max)
14:07:49 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:49 DEBUG opendrift.models.basemodel:1527: 3056 active elements
14:07:49 DEBUG opendrift.models.basemodel:1538: 59.1030174682344 <- latitude -> 59.18690340359526
14:07:49 DEBUG opendrift.models.basemodel:1543: 10.939680486757869 <- longitude -> 11.036332768068158
14:07:49 DEBUG opendrift.models.basemodel:1548: -14.30270838157516 <- z -> 0.0
14:07:49 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:49 DEBUG opendrift.models.basemodel:836: Lifting 236 elements to seafloor.
14:07:49 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:49 INFO opendrift.models.basemodel:2882: 2023-09-02 04:36:21.121579 - step 88 of 216 - 3056 active elements (0 deactivated)
14:07:49 DEBUG opendrift.models.basemodel:2888: 6944 elements scheduled.
14:07:49 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:49 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:49 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:49 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:49 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:49 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:49 DEBUG opendrift.models.basemodel:1253: Data needed for 3056 elements
14:07:49 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:49 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:49 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:49 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:49 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:49 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:49 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:49 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:49 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:49 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:49 DEBUG opendrift.models.basemodel:1253: Data needed for 3056 elements
14:07:49 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:49 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 04:00:00 (before)
2023-09-02 05:00:00 (after)
14:07:50 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:50 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:50 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:50 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:50 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:50 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:50 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 25x23x5) for time after (2023-09-02 05:00:00)
14:07:50 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 04:00:00) in space (linearNDFast)
14:07:50 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:50 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 05:00:00) in space (linearNDFast)
14:07:50 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1587 elements, expanding data 1
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1587 elements, expanding data 1
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1667 elements, expanding data 1
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 2
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1667 elements, expanding data 1
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 2
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1667 elements, expanding data 1
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 2
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1667 elements, expanding data 1
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 2
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1667 elements, expanding data 1
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 2
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2268 elements, expanding data 1
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 868 elements, expanding data 2
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2268 elements, expanding data 1
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 868 elements, expanding data 2
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2268 elements, expanding data 1
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 868 elements, expanding data 2
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2268 elements, expanding data 1
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 868 elements, expanding data 2
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2268 elements, expanding data 1
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 868 elements, expanding data 2
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1587 elements, expanding data 1
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1587 elements, expanding data 1
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1587 elements, expanding data 1
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1587 elements, expanding data 1
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1587 elements, expanding data 1
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:07:50 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 04:00:00, weight 0.39) and
after (2023-09-02 05:00:00, weight 0.61) in time
14:07:50 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.06033006907841 and -58.9636777787201 degrees.
14:07:50 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.06033006907841 and -58.9636777787201 degrees.
14:07:50 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:50 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:50 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:50 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:50 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:50 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:50 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.777589 (min) 1.17282 (max)
14:07:50 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.961158 (min) 0.702101 (max)
14:07:50 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -9.62782e-05 (min) 0.000930968 (max)
14:07:50 DEBUG opendrift.models.basemodel:1524: x_wind: -7.04514 (min) 8.48751 (max)
14:07:50 DEBUG opendrift.models.basemodel:1524: y_wind: -8.02302 (min) 5.36872 (max)
14:07:50 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:50 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:50 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:50 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:50 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:50 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:50 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:50 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.2092 (max)
14:07:50 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:50 DEBUG opendrift.models.basemodel:1527: 3056 active elements
14:07:50 DEBUG opendrift.models.basemodel:1538: 59.1030174682344 <- latitude -> 59.18690340359526
14:07:50 DEBUG opendrift.models.basemodel:1543: 10.939680486757869 <- longitude -> 11.036332768068158
14:07:50 DEBUG opendrift.models.basemodel:1548: -14.30270838157516 <- z -> 0.0
14:07:50 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:50 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:50 DEBUG opendrift.models.physics_methods:1050: min: 0.024905, mean: 2.760226, max: 7.781967
14:07:50 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.024905, mean: 2.760226, max: 7.781967
14:07:50 DEBUG opendrift.models.basemodel:813: 395 elements hit coastline, moving back to water
14:07:50 DEBUG opendrift.models.basemodel:836: Lifting 92 elements to seafloor.
14:07:50 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:50 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:50 DEBUG opendrift.models.physics_methods:828: Advecting 39 of 3056 elements above 0.100m with wind-sheared ocean current (0.001982 m/s - 0.158730 m/s)
14:07:50 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:50 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:50 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07493846904047012
14:07:50 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:50 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:50 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:50 DEBUG opendrift.models.oceandrift:582: 340 elements penetrated seafloor, lifting up
14:07:50 DEBUG opendrift.models.oceandrift:600: 52 elements reached seafloor, set to bottom
14:07:50 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
14:07:50 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
14:07:50 DEBUG opendrift.models.oceandrift:582: 258 elements penetrated seafloor, lifting up
14:07:50 DEBUG opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
14:07:50 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
14:07:50 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
14:07:50 DEBUG opendrift.models.oceandrift:582: 229 elements penetrated seafloor, lifting up
14:07:50 DEBUG opendrift.models.oceandrift:600: 42 elements reached seafloor, set to bottom
14:07:50 DEBUG opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
14:07:50 DEBUG opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
14:07:50 DEBUG opendrift.models.oceandrift:582: 213 elements penetrated seafloor, lifting up
14:07:50 DEBUG opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
14:07:50 DEBUG opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
14:07:50 DEBUG opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
14:07:50 DEBUG opendrift.models.oceandrift:582: 197 elements penetrated seafloor, lifting up
14:07:50 DEBUG opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
14:07:50 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
14:07:50 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
14:07:50 DEBUG opendrift.models.oceandrift:582: 207 elements penetrated seafloor, lifting up
14:07:50 DEBUG opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
14:07:50 DEBUG opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
14:07:50 DEBUG opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
14:07:50 DEBUG opendrift.models.oceandrift:582: 191 elements penetrated seafloor, lifting up
14:07:50 DEBUG opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
14:07:50 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
14:07:50 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
14:07:50 DEBUG opendrift.models.oceandrift:582: 182 elements penetrated seafloor, lifting up
14:07:50 DEBUG opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
14:07:50 DEBUG opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
14:07:50 DEBUG opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
14:07:50 DEBUG opendrift.models.oceandrift:582: 173 elements penetrated seafloor, lifting up
14:07:50 DEBUG opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
14:07:50 DEBUG opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
14:07:50 DEBUG opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
14:07:50 DEBUG opendrift.models.oceandrift:582: 177 elements penetrated seafloor, lifting up
14:07:50 DEBUG opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
14:07:50 DEBUG opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
14:07:50 DEBUG opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
14:07:50 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:50 DEBUG opendrift.models.basemodel:2945: 3056 active elements (0 deactivated)
14:07:50 DEBUG opendrift.models.basemodel:1658: to be seeded: 6944, already seeded 3056
14:07:50 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:07:50 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:50 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:50 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:50 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:50 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:50 DEBUG opendrift.models.basemodel:1253: Data needed for 3090 elements
14:07:50 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:50 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 04:00:00 (before)
2023-09-02 05:00:00 (after)
14:07:50 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 04:00:00) in space (linearNDFast)
14:07:50 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:50 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:50 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:50 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:50 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:50 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:50 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3432 (max)
14:07:50 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:50 DEBUG opendrift.models.basemodel:1527: 3090 active elements
14:07:50 DEBUG opendrift.models.basemodel:1538: 59.10249077882649 <- latitude -> 59.18669423955574
14:07:50 DEBUG opendrift.models.basemodel:1543: 10.94284465041998 <- longitude -> 11.038214279487896
14:07:50 DEBUG opendrift.models.basemodel:1548: -15.049907913208008 <- z -> 0.0
14:07:50 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:50 DEBUG opendrift.models.basemodel:836: Lifting 230 elements to seafloor.
14:07:50 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:50 INFO opendrift.models.basemodel:2882: 2023-09-02 04:46:21.121579 - step 89 of 216 - 3090 active elements (0 deactivated)
14:07:50 DEBUG opendrift.models.basemodel:2888: 6910 elements scheduled.
14:07:50 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:50 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:50 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:50 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:50 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:50 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:50 DEBUG opendrift.models.basemodel:1253: Data needed for 3090 elements
14:07:50 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:50 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:50 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:50 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:50 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:50 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:50 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:50 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:50 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:50 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:50 DEBUG opendrift.models.basemodel:1253: Data needed for 3090 elements
14:07:50 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:50 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 04:00:00 (before)
2023-09-02 05:00:00 (after)
14:07:51 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:51 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:51 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:51 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:51 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:51 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:51 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x22x6) for time after (2023-09-02 05:00:00)
14:07:51 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 04:00:00) in space (linearNDFast)
14:07:51 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:51 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 05:00:00) in space (linearNDFast)
14:07:51 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1581 elements, expanding data 1
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1581 elements, expanding data 1
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1658 elements, expanding data 1
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 2
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1658 elements, expanding data 1
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 2
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1658 elements, expanding data 1
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 2
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1658 elements, expanding data 1
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 2
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1658 elements, expanding data 1
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 2
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1658 elements, expanding data 1
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 2
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2283 elements, expanding data 1
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 864 elements, expanding data 2
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2283 elements, expanding data 1
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 864 elements, expanding data 2
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2283 elements, expanding data 1
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 864 elements, expanding data 2
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2283 elements, expanding data 1
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 864 elements, expanding data 2
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2283 elements, expanding data 1
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 864 elements, expanding data 2
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2283 elements, expanding data 1
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 864 elements, expanding data 2
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1581 elements, expanding data 1
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1581 elements, expanding data 1
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1581 elements, expanding data 1
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1581 elements, expanding data 1
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1581 elements, expanding data 1
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1581 elements, expanding data 1
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:51 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 04:00:00, weight 0.23) and
after (2023-09-02 05:00:00, weight 0.77) in time
14:07:51 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05716590559538 and -58.96179627629852 degrees.
14:07:51 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05716590559538 and -58.96179627629852 degrees.
14:07:51 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:51 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:51 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:51 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:51 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:51 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:51 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.848077 (min) 1.35885 (max)
14:07:51 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.940859 (min) 0.717635 (max)
14:07:51 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -8.90919e-05 (min) 0.00084818 (max)
14:07:51 DEBUG opendrift.models.basemodel:1524: x_wind: -5.77541 (min) 8.29743 (max)
14:07:51 DEBUG opendrift.models.basemodel:1524: y_wind: -8.91572 (min) 5.70127 (max)
14:07:51 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:51 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:51 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:51 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:51 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:51 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:51 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:51 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3432 (max)
14:07:51 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:51 DEBUG opendrift.models.basemodel:1527: 3090 active elements
14:07:51 DEBUG opendrift.models.basemodel:1538: 59.10249077882649 <- latitude -> 59.18669423955574
14:07:51 DEBUG opendrift.models.basemodel:1543: 10.94284465041998 <- longitude -> 11.038214279487896
14:07:51 DEBUG opendrift.models.basemodel:1548: -15.049907913208008 <- z -> 0.0
14:07:51 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:51 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:51 DEBUG opendrift.models.physics_methods:1050: min: 0.064338, mean: 2.735713, max: 7.634905
14:07:51 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.064338, mean: 2.735713, max: 7.634905
14:07:51 DEBUG opendrift.models.basemodel:813: 364 elements hit coastline, moving back to water
14:07:51 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:51 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:51 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:51 DEBUG opendrift.models.physics_methods:828: Advecting 35 of 3090 elements above 0.100m with wind-sheared ocean current (0.004888 m/s - 0.137349 m/s)
14:07:51 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:51 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:51 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07213303474505424
14:07:51 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:51 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:51 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:51 DEBUG opendrift.models.oceandrift:582: 288 elements penetrated seafloor, lifting up
14:07:51 DEBUG opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
14:07:51 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
14:07:51 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
14:07:51 DEBUG opendrift.models.oceandrift:582: 234 elements penetrated seafloor, lifting up
14:07:51 DEBUG opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
14:07:51 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
14:07:51 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
14:07:51 DEBUG opendrift.models.oceandrift:582: 233 elements penetrated seafloor, lifting up
14:07:51 DEBUG opendrift.models.oceandrift:600: 36 elements reached seafloor, set to bottom
14:07:51 DEBUG opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
14:07:51 DEBUG opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
14:07:51 DEBUG opendrift.models.oceandrift:582: 205 elements penetrated seafloor, lifting up
14:07:51 DEBUG opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
14:07:51 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
14:07:51 DEBUG opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
14:07:51 DEBUG opendrift.models.oceandrift:582: 205 elements penetrated seafloor, lifting up
14:07:51 DEBUG opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
14:07:51 DEBUG opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
14:07:51 DEBUG opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
14:07:51 DEBUG opendrift.models.oceandrift:582: 212 elements penetrated seafloor, lifting up
14:07:51 DEBUG opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
14:07:51 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
14:07:51 DEBUG opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
14:07:51 DEBUG opendrift.models.oceandrift:582: 200 elements penetrated seafloor, lifting up
14:07:51 DEBUG opendrift.models.oceandrift:600: 29 elements reached seafloor, set to bottom
14:07:51 DEBUG opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
14:07:51 DEBUG opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
14:07:51 DEBUG opendrift.models.oceandrift:582: 194 elements penetrated seafloor, lifting up
14:07:51 DEBUG opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
14:07:51 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
14:07:51 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
14:07:51 DEBUG opendrift.models.oceandrift:582: 169 elements penetrated seafloor, lifting up
14:07:51 DEBUG opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
14:07:51 DEBUG opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
14:07:51 DEBUG opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
14:07:51 DEBUG opendrift.models.oceandrift:582: 179 elements penetrated seafloor, lifting up
14:07:51 DEBUG opendrift.models.oceandrift:600: 27 elements reached seafloor, set to bottom
14:07:51 DEBUG opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
14:07:51 DEBUG opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
14:07:51 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:51 DEBUG opendrift.models.basemodel:2945: 3090 active elements (0 deactivated)
14:07:51 DEBUG opendrift.models.basemodel:1658: to be seeded: 6910, already seeded 3090
14:07:51 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:07:51 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:51 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:51 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:51 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:51 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:51 DEBUG opendrift.models.basemodel:1253: Data needed for 3125 elements
14:07:51 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:51 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 04:00:00 (before)
2023-09-02 05:00:00 (after)
14:07:51 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 04:00:00) in space (linearNDFast)
14:07:51 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:51 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:51 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:51 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:51 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:51 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:51 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3519 (max)
14:07:51 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:51 DEBUG opendrift.models.basemodel:1527: 3125 active elements
14:07:51 DEBUG opendrift.models.basemodel:1538: 59.10174486126364 <- latitude -> 59.18702077233533
14:07:51 DEBUG opendrift.models.basemodel:1543: 10.942370103881334 <- longitude -> 11.037412430896728
14:07:51 DEBUG opendrift.models.basemodel:1548: -14.967568539421823 <- z -> 0.0
14:07:51 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:51 DEBUG opendrift.models.basemodel:836: Lifting 265 elements to seafloor.
14:07:51 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:51 INFO opendrift.models.basemodel:2882: 2023-09-02 04:56:21.121579 - step 90 of 216 - 3125 active elements (0 deactivated)
14:07:51 DEBUG opendrift.models.basemodel:2888: 6875 elements scheduled.
14:07:51 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:51 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:51 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:51 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:51 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:51 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:51 DEBUG opendrift.models.basemodel:1253: Data needed for 3125 elements
14:07:51 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:51 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:51 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:51 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:51 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:51 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:51 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:51 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:51 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:51 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:51 DEBUG opendrift.models.basemodel:1253: Data needed for 3125 elements
14:07:51 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:51 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 04:00:00 (before)
2023-09-02 05:00:00 (after)
14:07:52 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:52 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:52 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:52 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:52 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:52 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:52 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 25x23x5) for time after (2023-09-02 05:00:00)
14:07:52 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 04:00:00) in space (linearNDFast)
14:07:52 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:52 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 05:00:00) in space (linearNDFast)
14:07:52 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1600 elements, expanding data 1
14:07:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1600 elements, expanding data 1
14:07:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1683 elements, expanding data 1
14:07:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 2
14:07:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:07:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1683 elements, expanding data 1
14:07:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 2
14:07:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:07:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1683 elements, expanding data 1
14:07:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 2
14:07:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:07:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1683 elements, expanding data 1
14:07:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 2
14:07:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:07:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1683 elements, expanding data 1
14:07:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 2
14:07:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:07:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2312 elements, expanding data 1
14:07:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 858 elements, expanding data 2
14:07:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2312 elements, expanding data 1
14:07:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 858 elements, expanding data 2
14:07:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2312 elements, expanding data 1
14:07:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 858 elements, expanding data 2
14:07:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2312 elements, expanding data 1
14:07:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 858 elements, expanding data 2
14:07:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2312 elements, expanding data 1
14:07:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 858 elements, expanding data 2
14:07:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1600 elements, expanding data 1
14:07:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1600 elements, expanding data 1
14:07:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1600 elements, expanding data 1
14:07:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1600 elements, expanding data 1
14:07:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1600 elements, expanding data 1
14:07:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:52 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 04:00:00, weight 0.06) and
after (2023-09-02 05:00:00, weight 0.94) in time
14:07:52 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05764045603771 and -58.96259813108985 degrees.
14:07:52 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05764045603771 and -58.96259813108985 degrees.
14:07:52 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:52 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:52 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:52 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:52 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:52 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:52 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.653553 (min) 1.15317 (max)
14:07:52 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.986629 (min) 0.814069 (max)
14:07:52 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -8.6331e-05 (min) 0.000815649 (max)
14:07:52 DEBUG opendrift.models.basemodel:1524: x_wind: -4.87709 (min) 7.74682 (max)
14:07:52 DEBUG opendrift.models.basemodel:1524: y_wind: -8.60424 (min) 5.24717 (max)
14:07:52 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:52 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:52 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:52 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:52 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:52 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:52 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:52 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3519 (max)
14:07:52 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:52 DEBUG opendrift.models.basemodel:1527: 3125 active elements
14:07:52 DEBUG opendrift.models.basemodel:1538: 59.10174486126364 <- latitude -> 59.18702077233533
14:07:52 DEBUG opendrift.models.basemodel:1543: 10.942370103881334 <- longitude -> 11.037412430896728
14:07:52 DEBUG opendrift.models.basemodel:1548: -14.967568539421823 <- z -> 0.0
14:07:52 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:52 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:52 DEBUG opendrift.models.physics_methods:1050: min: 0.024641, mean: 2.704955, max: 7.875284
14:07:52 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.024641, mean: 2.704955, max: 7.875284
14:07:52 DEBUG opendrift.models.basemodel:813: 380 elements hit coastline, moving back to water
14:07:52 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:07:52 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:52 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:52 DEBUG opendrift.models.physics_methods:828: Advecting 36 of 3125 elements above 0.100m with wind-sheared ocean current (0.009943 m/s - 0.120141 m/s)
14:07:52 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:52 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:52 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07674639685209274
14:07:52 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:52 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:52 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:52 DEBUG opendrift.models.oceandrift:582: 313 elements penetrated seafloor, lifting up
14:07:52 DEBUG opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
14:07:52 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
14:07:52 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
14:07:52 DEBUG opendrift.models.oceandrift:582: 285 elements penetrated seafloor, lifting up
14:07:52 DEBUG opendrift.models.oceandrift:600: 42 elements reached seafloor, set to bottom
14:07:52 DEBUG opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
14:07:52 DEBUG opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
14:07:52 DEBUG opendrift.models.oceandrift:582: 235 elements penetrated seafloor, lifting up
14:07:52 DEBUG opendrift.models.oceandrift:600: 40 elements reached seafloor, set to bottom
14:07:52 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
14:07:52 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
14:07:52 DEBUG opendrift.models.oceandrift:582: 221 elements penetrated seafloor, lifting up
14:07:52 DEBUG opendrift.models.oceandrift:600: 40 elements reached seafloor, set to bottom
14:07:52 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
14:07:52 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
14:07:52 DEBUG opendrift.models.oceandrift:582: 212 elements penetrated seafloor, lifting up
14:07:52 DEBUG opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
14:07:52 DEBUG opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
14:07:52 DEBUG opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
14:07:52 DEBUG opendrift.models.oceandrift:582: 193 elements penetrated seafloor, lifting up
14:07:52 DEBUG opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
14:07:52 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
14:07:52 DEBUG opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
14:07:52 DEBUG opendrift.models.oceandrift:582: 173 elements penetrated seafloor, lifting up
14:07:52 DEBUG opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
14:07:52 DEBUG opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
14:07:52 DEBUG opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
14:07:52 DEBUG opendrift.models.oceandrift:582: 192 elements penetrated seafloor, lifting up
14:07:52 DEBUG opendrift.models.oceandrift:600: 27 elements reached seafloor, set to bottom
14:07:52 DEBUG opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
14:07:52 DEBUG opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
14:07:52 DEBUG opendrift.models.oceandrift:582: 201 elements penetrated seafloor, lifting up
14:07:52 DEBUG opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
14:07:52 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
14:07:52 DEBUG opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
14:07:52 DEBUG opendrift.models.oceandrift:582: 194 elements penetrated seafloor, lifting up
14:07:52 DEBUG opendrift.models.oceandrift:600: 17 elements reached seafloor, set to bottom
14:07:52 DEBUG opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
14:07:52 DEBUG opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
14:07:52 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:52 DEBUG opendrift.models.basemodel:2945: 3125 active elements (0 deactivated)
14:07:52 DEBUG opendrift.models.basemodel:1658: to be seeded: 6875, already seeded 3125
14:07:52 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:07:52 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:52 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:52 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:52 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:52 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:52 DEBUG opendrift.models.basemodel:1253: Data needed for 3160 elements
14:07:52 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:52 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 05:00:00 (before)
2023-09-02 06:00:00 (after)
14:07:52 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 05:00:00) in space (linearNDFast)
14:07:52 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:52 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:52 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:52 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:52 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:52 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:52 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.435 (max)
14:07:52 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:52 DEBUG opendrift.models.basemodel:1527: 3160 active elements
14:07:52 DEBUG opendrift.models.basemodel:1538: 59.10051692409196 <- latitude -> 59.18609344870257
14:07:52 DEBUG opendrift.models.basemodel:1543: 10.941419469876635 <- longitude -> 11.041147396873166
14:07:52 DEBUG opendrift.models.basemodel:1548: -14.125923385620117 <- z -> 0.0
14:07:52 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:52 DEBUG opendrift.models.basemodel:836: Lifting 227 elements to seafloor.
14:07:52 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:52 INFO opendrift.models.basemodel:2882: 2023-09-02 05:06:21.121579 - step 91 of 216 - 3160 active elements (0 deactivated)
14:07:52 DEBUG opendrift.models.basemodel:2888: 6840 elements scheduled.
14:07:52 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:52 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:52 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:52 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:52 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:52 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:52 DEBUG opendrift.models.basemodel:1253: Data needed for 3160 elements
14:07:52 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:52 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:52 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:52 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:52 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:52 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:52 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:52 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:52 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:52 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:52 DEBUG opendrift.models.basemodel:1253: Data needed for 3160 elements
14:07:52 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:52 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 05:00:00 (before)
2023-09-02 06:00:00 (after)
14:07:53 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:53 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:53 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:53 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:53 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:53 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:53 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 25x22x5) for time after (2023-09-02 06:00:00)
14:07:53 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 05:00:00) in space (linearNDFast)
14:07:53 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:53 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 06:00:00) in space (linearNDFast)
14:07:53 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1617 elements, expanding data 1
14:07:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:07:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1617 elements, expanding data 1
14:07:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:07:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1696 elements, expanding data 1
14:07:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 2
14:07:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:07:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1696 elements, expanding data 1
14:07:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 2
14:07:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:07:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1696 elements, expanding data 1
14:07:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 2
14:07:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:07:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1696 elements, expanding data 1
14:07:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 2
14:07:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:07:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1696 elements, expanding data 1
14:07:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 2
14:07:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:07:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2342 elements, expanding data 1
14:07:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 874 elements, expanding data 2
14:07:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2342 elements, expanding data 1
14:07:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 874 elements, expanding data 2
14:07:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2342 elements, expanding data 1
14:07:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 874 elements, expanding data 2
14:07:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2342 elements, expanding data 1
14:07:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 874 elements, expanding data 2
14:07:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2342 elements, expanding data 1
14:07:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 874 elements, expanding data 2
14:07:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1617 elements, expanding data 1
14:07:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:07:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1617 elements, expanding data 1
14:07:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:07:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1617 elements, expanding data 1
14:07:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:07:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1617 elements, expanding data 1
14:07:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:07:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1617 elements, expanding data 1
14:07:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:07:53 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 05:00:00, weight 0.89) and
after (2023-09-02 06:00:00, weight 0.11) in time
14:07:53 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05859109573936 and -58.958863158399694 degrees.
14:07:53 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05859109573936 and -58.958863158399694 degrees.
14:07:53 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:53 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:53 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:53 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:53 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:53 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:53 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.653087 (min) 1.26777 (max)
14:07:53 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.00197 (min) 0.68552 (max)
14:07:53 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -7.47259e-05 (min) 0.000669938 (max)
14:07:53 DEBUG opendrift.models.basemodel:1524: x_wind: -5.08461 (min) 8.26716 (max)
14:07:53 DEBUG opendrift.models.basemodel:1524: y_wind: -9.67018 (min) 5.22523 (max)
14:07:53 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:53 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:53 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:53 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:53 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:53 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:53 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:53 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.435 (max)
14:07:53 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:53 DEBUG opendrift.models.basemodel:1527: 3160 active elements
14:07:53 DEBUG opendrift.models.basemodel:1538: 59.10051692409196 <- latitude -> 59.18609344870257
14:07:53 DEBUG opendrift.models.basemodel:1543: 10.941419469876635 <- longitude -> 11.041147396873166
14:07:53 DEBUG opendrift.models.basemodel:1548: -14.125923385620117 <- z -> 0.0
14:07:53 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:53 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:53 DEBUG opendrift.models.physics_methods:1050: min: 0.090539, mean: 2.744463, max: 8.265397
14:07:53 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.090539, mean: 2.744463, max: 8.265397
14:07:53 DEBUG opendrift.models.basemodel:813: 403 elements hit coastline, moving back to water
14:07:53 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:07:53 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:53 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:53 DEBUG opendrift.models.physics_methods:828: Advecting 35 of 3160 elements above 0.100m with wind-sheared ocean current (0.012088 m/s - 0.119005 m/s)
14:07:53 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:53 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:53 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08453776575525283
14:07:53 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:53 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:53 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:53 DEBUG opendrift.models.oceandrift:582: 328 elements penetrated seafloor, lifting up
14:07:53 DEBUG opendrift.models.oceandrift:600: 56 elements reached seafloor, set to bottom
14:07:53 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
14:07:53 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
14:07:53 DEBUG opendrift.models.oceandrift:582: 261 elements penetrated seafloor, lifting up
14:07:53 DEBUG opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
14:07:53 DEBUG opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
14:07:53 DEBUG opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
14:07:53 DEBUG opendrift.models.oceandrift:582: 242 elements penetrated seafloor, lifting up
14:07:53 DEBUG opendrift.models.oceandrift:600: 29 elements reached seafloor, set to bottom
14:07:53 DEBUG opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
14:07:53 DEBUG opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
14:07:53 DEBUG opendrift.models.oceandrift:582: 243 elements penetrated seafloor, lifting up
14:07:53 DEBUG opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
14:07:53 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
14:07:53 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
14:07:53 DEBUG opendrift.models.oceandrift:582: 235 elements penetrated seafloor, lifting up
14:07:53 DEBUG opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
14:07:53 DEBUG opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
14:07:53 DEBUG opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
14:07:53 DEBUG opendrift.models.oceandrift:582: 211 elements penetrated seafloor, lifting up
14:07:53 DEBUG opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
14:07:53 DEBUG opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
14:07:53 DEBUG opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
14:07:53 DEBUG opendrift.models.oceandrift:582: 224 elements penetrated seafloor, lifting up
14:07:53 DEBUG opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
14:07:53 DEBUG opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
14:07:53 DEBUG opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
14:07:53 DEBUG opendrift.models.oceandrift:582: 204 elements penetrated seafloor, lifting up
14:07:53 DEBUG opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
14:07:53 DEBUG opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
14:07:53 DEBUG opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
14:07:53 DEBUG opendrift.models.oceandrift:582: 192 elements penetrated seafloor, lifting up
14:07:53 DEBUG opendrift.models.oceandrift:600: 29 elements reached seafloor, set to bottom
14:07:53 DEBUG opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
14:07:53 DEBUG opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
14:07:53 DEBUG opendrift.models.oceandrift:582: 173 elements penetrated seafloor, lifting up
14:07:53 DEBUG opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
14:07:53 DEBUG opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
14:07:53 DEBUG opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
14:07:53 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:53 DEBUG opendrift.models.basemodel:2945: 3160 active elements (0 deactivated)
14:07:53 DEBUG opendrift.models.basemodel:1658: to be seeded: 6840, already seeded 3160
14:07:53 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:07:53 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:53 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:53 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:53 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:53 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:53 DEBUG opendrift.models.basemodel:1253: Data needed for 3195 elements
14:07:53 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:53 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 05:00:00 (before)
2023-09-02 06:00:00 (after)
14:07:53 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 05:00:00) in space (linearNDFast)
14:07:53 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:53 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:53 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:53 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:53 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:53 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:53 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.37 (max)
14:07:53 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:53 DEBUG opendrift.models.basemodel:1527: 3195 active elements
14:07:53 DEBUG opendrift.models.basemodel:1538: 59.10177226937746 <- latitude -> 59.1857792094521
14:07:53 DEBUG opendrift.models.basemodel:1543: 10.94018021535364 <- longitude -> 11.040442665319706
14:07:53 DEBUG opendrift.models.basemodel:1548: -13.605025520324707 <- z -> 0.0
14:07:53 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:53 DEBUG opendrift.models.basemodel:836: Lifting 225 elements to seafloor.
14:07:53 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:53 INFO opendrift.models.basemodel:2882: 2023-09-02 05:16:21.121579 - step 92 of 216 - 3195 active elements (0 deactivated)
14:07:53 DEBUG opendrift.models.basemodel:2888: 6805 elements scheduled.
14:07:53 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:53 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:53 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:53 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:53 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:53 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:53 DEBUG opendrift.models.basemodel:1253: Data needed for 3195 elements
14:07:53 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:53 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:53 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:53 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:53 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:53 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:53 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:53 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:53 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:53 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:53 DEBUG opendrift.models.basemodel:1253: Data needed for 3195 elements
14:07:53 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:53 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 05:00:00 (before)
2023-09-02 06:00:00 (after)
14:07:54 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:54 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:54 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:54 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:54 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:54 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:54 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 25x23x5) for time after (2023-09-02 06:00:00)
14:07:54 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 05:00:00) in space (linearNDFast)
14:07:54 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:54 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 06:00:00) in space (linearNDFast)
14:07:54 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1637 elements, expanding data 1
14:07:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1637 elements, expanding data 1
14:07:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1715 elements, expanding data 1
14:07:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 80 elements, expanding data 2
14:07:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
14:07:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1715 elements, expanding data 1
14:07:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 80 elements, expanding data 2
14:07:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
14:07:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1715 elements, expanding data 1
14:07:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 80 elements, expanding data 2
14:07:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
14:07:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1715 elements, expanding data 1
14:07:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 80 elements, expanding data 2
14:07:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
14:07:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1715 elements, expanding data 1
14:07:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 80 elements, expanding data 2
14:07:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
14:07:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2392 elements, expanding data 1
14:07:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 897 elements, expanding data 2
14:07:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2392 elements, expanding data 1
14:07:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 897 elements, expanding data 2
14:07:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2392 elements, expanding data 1
14:07:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 897 elements, expanding data 2
14:07:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2392 elements, expanding data 1
14:07:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 897 elements, expanding data 2
14:07:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2392 elements, expanding data 1
14:07:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 897 elements, expanding data 2
14:07:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1637 elements, expanding data 1
14:07:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1637 elements, expanding data 1
14:07:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1637 elements, expanding data 1
14:07:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1637 elements, expanding data 1
14:07:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1637 elements, expanding data 1
14:07:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:54 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 05:00:00, weight 0.73) and
after (2023-09-02 06:00:00, weight 0.27) in time
14:07:54 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05983035255586 and -58.95956788778416 degrees.
14:07:54 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05983035255586 and -58.95956788778416 degrees.
14:07:54 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:54 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:54 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:54 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:54 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:54 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:54 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.709842 (min) 1.1754 (max)
14:07:54 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.824219 (min) 0.724716 (max)
14:07:54 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -8.76525e-05 (min) 0.000679136 (max)
14:07:54 DEBUG opendrift.models.basemodel:1524: x_wind: -6.68107 (min) 8.18219 (max)
14:07:54 DEBUG opendrift.models.basemodel:1524: y_wind: -9.12648 (min) 5.76515 (max)
14:07:54 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:54 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:54 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:54 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:54 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:54 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:54 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:54 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.37 (max)
14:07:54 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:54 DEBUG opendrift.models.basemodel:1527: 3195 active elements
14:07:54 DEBUG opendrift.models.basemodel:1538: 59.10177226937746 <- latitude -> 59.1857792094521
14:07:54 DEBUG opendrift.models.basemodel:1543: 10.94018021535364 <- longitude -> 11.040442665319706
14:07:54 DEBUG opendrift.models.basemodel:1548: -13.275593757629395 <- z -> 0.0
14:07:54 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:54 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:54 DEBUG opendrift.models.physics_methods:1050: min: 0.115279, mean: 2.834556, max: 8.282173
14:07:54 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.115279, mean: 2.834556, max: 8.282173
14:07:54 DEBUG opendrift.models.basemodel:813: 389 elements hit coastline, moving back to water
14:07:54 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:54 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:54 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:54 DEBUG opendrift.models.physics_methods:828: Advecting 35 of 3195 elements above 0.100m with wind-sheared ocean current (0.006563 m/s - 0.126639 m/s)
14:07:54 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:54 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:54 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08488126868494034
14:07:54 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:54 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:54 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:54 DEBUG opendrift.models.oceandrift:582: 341 elements penetrated seafloor, lifting up
14:07:54 DEBUG opendrift.models.oceandrift:600: 60 elements reached seafloor, set to bottom
14:07:54 DEBUG opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
14:07:54 DEBUG opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
14:07:54 DEBUG opendrift.models.oceandrift:582: 280 elements penetrated seafloor, lifting up
14:07:54 DEBUG opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
14:07:54 DEBUG opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
14:07:54 DEBUG opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
14:07:54 DEBUG opendrift.models.oceandrift:582: 229 elements penetrated seafloor, lifting up
14:07:54 DEBUG opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
14:07:54 DEBUG opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
14:07:54 DEBUG opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
14:07:54 DEBUG opendrift.models.oceandrift:582: 253 elements penetrated seafloor, lifting up
14:07:54 DEBUG opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
14:07:54 DEBUG opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
14:07:54 DEBUG opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
14:07:54 DEBUG opendrift.models.oceandrift:582: 252 elements penetrated seafloor, lifting up
14:07:54 DEBUG opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
14:07:54 DEBUG opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
14:07:54 DEBUG opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
14:07:54 DEBUG opendrift.models.oceandrift:582: 246 elements penetrated seafloor, lifting up
14:07:54 DEBUG opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
14:07:54 DEBUG opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
14:07:54 DEBUG opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
14:07:54 DEBUG opendrift.models.oceandrift:582: 243 elements penetrated seafloor, lifting up
14:07:54 DEBUG opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
14:07:54 DEBUG opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
14:07:54 DEBUG opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
14:07:54 DEBUG opendrift.models.oceandrift:582: 225 elements penetrated seafloor, lifting up
14:07:54 DEBUG opendrift.models.oceandrift:600: 40 elements reached seafloor, set to bottom
14:07:54 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
14:07:54 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
14:07:54 DEBUG opendrift.models.oceandrift:582: 195 elements penetrated seafloor, lifting up
14:07:54 DEBUG opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
14:07:54 DEBUG opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
14:07:54 DEBUG opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
14:07:54 DEBUG opendrift.models.oceandrift:582: 213 elements penetrated seafloor, lifting up
14:07:54 DEBUG opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
14:07:54 DEBUG opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
14:07:54 DEBUG opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
14:07:54 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:54 DEBUG opendrift.models.basemodel:2945: 3195 active elements (0 deactivated)
14:07:54 DEBUG opendrift.models.basemodel:1658: to be seeded: 6805, already seeded 3195
14:07:54 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:07:54 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:54 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:54 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:54 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:54 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:54 DEBUG opendrift.models.basemodel:1253: Data needed for 3229 elements
14:07:54 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:54 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 05:00:00 (before)
2023-09-02 06:00:00 (after)
14:07:54 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 05:00:00) in space (linearNDFast)
14:07:54 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:54 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:54 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:54 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:54 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:54 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:54 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3924 (max)
14:07:54 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:54 DEBUG opendrift.models.basemodel:1527: 3229 active elements
14:07:54 DEBUG opendrift.models.basemodel:1538: 59.101515968341246 <- latitude -> 59.18575886980369
14:07:54 DEBUG opendrift.models.basemodel:1543: 10.936374625078367 <- longitude -> 11.03841386118806
14:07:54 DEBUG opendrift.models.basemodel:1548: -13.868017635343111 <- z -> 0.0
14:07:54 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:54 DEBUG opendrift.models.basemodel:836: Lifting 237 elements to seafloor.
14:07:54 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:54 INFO opendrift.models.basemodel:2882: 2023-09-02 05:26:21.121579 - step 93 of 216 - 3229 active elements (0 deactivated)
14:07:54 DEBUG opendrift.models.basemodel:2888: 6771 elements scheduled.
14:07:54 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:54 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:54 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:54 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:54 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:54 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:54 DEBUG opendrift.models.basemodel:1253: Data needed for 3229 elements
14:07:54 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:54 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:54 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:54 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:54 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:54 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:54 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:54 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:54 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:54 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:54 DEBUG opendrift.models.basemodel:1253: Data needed for 3229 elements
14:07:54 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:54 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 05:00:00 (before)
2023-09-02 06:00:00 (after)
14:07:55 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:55 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:55 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:55 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:55 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:55 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:55 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 25x22x5) for time after (2023-09-02 06:00:00)
14:07:55 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 05:00:00) in space (linearNDFast)
14:07:55 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:55 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 06:00:00) in space (linearNDFast)
14:07:55 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1671 elements, expanding data 1
14:07:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:07:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1671 elements, expanding data 1
14:07:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:07:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1748 elements, expanding data 1
14:07:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 2
14:07:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
14:07:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1748 elements, expanding data 1
14:07:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 2
14:07:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
14:07:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1748 elements, expanding data 1
14:07:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 2
14:07:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
14:07:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1748 elements, expanding data 1
14:07:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 2
14:07:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
14:07:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1748 elements, expanding data 1
14:07:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 2
14:07:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
14:07:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2405 elements, expanding data 1
14:07:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 911 elements, expanding data 2
14:07:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2405 elements, expanding data 1
14:07:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 911 elements, expanding data 2
14:07:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2405 elements, expanding data 1
14:07:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 911 elements, expanding data 2
14:07:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2405 elements, expanding data 1
14:07:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 911 elements, expanding data 2
14:07:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2405 elements, expanding data 1
14:07:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 911 elements, expanding data 2
14:07:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1671 elements, expanding data 1
14:07:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:07:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1671 elements, expanding data 1
14:07:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:07:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1671 elements, expanding data 1
14:07:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:07:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1671 elements, expanding data 1
14:07:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:07:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1671 elements, expanding data 1
14:07:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:07:55 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 05:00:00, weight 0.56) and
after (2023-09-02 06:00:00, weight 0.44) in time
14:07:55 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.06363594382455 and -58.96159669760846 degrees.
14:07:55 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.06363594382455 and -58.96159669760846 degrees.
14:07:55 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:55 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:55 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:55 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:55 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:55 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:55 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.701734 (min) 1.24873 (max)
14:07:55 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.02891 (min) 0.774065 (max)
14:07:55 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -8.18794e-05 (min) 0.000918891 (max)
14:07:55 DEBUG opendrift.models.basemodel:1524: x_wind: -5.22825 (min) 9.63506 (max)
14:07:55 DEBUG opendrift.models.basemodel:1524: y_wind: -8.59059 (min) 4.71801 (max)
14:07:55 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:55 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:55 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:55 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:55 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:55 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:55 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:55 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3924 (max)
14:07:55 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:55 DEBUG opendrift.models.basemodel:1527: 3229 active elements
14:07:55 DEBUG opendrift.models.basemodel:1538: 59.101515968341246 <- latitude -> 59.18575886980369
14:07:55 DEBUG opendrift.models.basemodel:1543: 10.936374625078367 <- longitude -> 11.03841386118806
14:07:55 DEBUG opendrift.models.basemodel:1548: -13.868017635343111 <- z -> 0.0
14:07:55 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:55 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:55 DEBUG opendrift.models.physics_methods:1050: min: 0.046484, mean: 2.856174, max: 8.544999
14:07:55 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.046484, mean: 2.856174, max: 8.544999
14:07:55 DEBUG opendrift.models.basemodel:813: 412 elements hit coastline, moving back to water
14:07:55 DEBUG opendrift.models.basemodel:836: Lifting 86 elements to seafloor.
14:07:55 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:55 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:55 DEBUG opendrift.models.physics_methods:828: Advecting 35 of 3229 elements above 0.100m with wind-sheared ocean current (0.006605 m/s - 0.137571 m/s)
14:07:55 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:55 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:55 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.0903537279821205
14:07:55 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:55 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:55 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:55 DEBUG opendrift.models.oceandrift:582: 343 elements penetrated seafloor, lifting up
14:07:55 DEBUG opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
14:07:55 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
14:07:55 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
14:07:55 DEBUG opendrift.models.oceandrift:582: 291 elements penetrated seafloor, lifting up
14:07:55 DEBUG opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
14:07:55 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
14:07:55 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
14:07:55 DEBUG opendrift.models.oceandrift:582: 260 elements penetrated seafloor, lifting up
14:07:55 DEBUG opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
14:07:55 DEBUG opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
14:07:55 DEBUG opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
14:07:55 DEBUG opendrift.models.oceandrift:582: 246 elements penetrated seafloor, lifting up
14:07:55 DEBUG opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
14:07:55 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
14:07:55 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
14:07:55 DEBUG opendrift.models.oceandrift:582: 225 elements penetrated seafloor, lifting up
14:07:55 DEBUG opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
14:07:55 DEBUG opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
14:07:55 DEBUG opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
14:07:55 DEBUG opendrift.models.oceandrift:582: 219 elements penetrated seafloor, lifting up
14:07:55 DEBUG opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
14:07:55 DEBUG opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
14:07:55 DEBUG opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
14:07:55 DEBUG opendrift.models.oceandrift:582: 237 elements penetrated seafloor, lifting up
14:07:55 DEBUG opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
14:07:55 DEBUG opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
14:07:55 DEBUG opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
14:07:55 DEBUG opendrift.models.oceandrift:582: 226 elements penetrated seafloor, lifting up
14:07:55 DEBUG opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
14:07:55 DEBUG opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
14:07:55 DEBUG opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
14:07:55 DEBUG opendrift.models.oceandrift:582: 210 elements penetrated seafloor, lifting up
14:07:55 DEBUG opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
14:07:55 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
14:07:55 DEBUG opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
14:07:55 DEBUG opendrift.models.oceandrift:582: 193 elements penetrated seafloor, lifting up
14:07:55 DEBUG opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
14:07:55 DEBUG opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
14:07:55 DEBUG opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
14:07:55 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:55 DEBUG opendrift.models.basemodel:2945: 3229 active elements (0 deactivated)
14:07:55 DEBUG opendrift.models.basemodel:1658: to be seeded: 6771, already seeded 3229
14:07:55 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:07:55 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:55 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:55 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:55 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:55 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:55 DEBUG opendrift.models.basemodel:1253: Data needed for 3264 elements
14:07:55 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:55 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 05:00:00 (before)
2023-09-02 06:00:00 (after)
14:07:55 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 05:00:00) in space (linearNDFast)
14:07:55 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:55 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:55 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:55 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:55 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:55 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:55 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3624 (max)
14:07:55 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:55 DEBUG opendrift.models.basemodel:1527: 3264 active elements
14:07:55 DEBUG opendrift.models.basemodel:1538: 59.1031330571355 <- latitude -> 59.185418856612515
14:07:55 DEBUG opendrift.models.basemodel:1543: 10.939735795416437 <- longitude -> 11.037481430987425
14:07:55 DEBUG opendrift.models.basemodel:1548: -14.038206100463867 <- z -> 0.0
14:07:55 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:55 DEBUG opendrift.models.basemodel:836: Lifting 261 elements to seafloor.
14:07:55 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:55 INFO opendrift.models.basemodel:2882: 2023-09-02 05:36:21.121579 - step 94 of 216 - 3264 active elements (0 deactivated)
14:07:55 DEBUG opendrift.models.basemodel:2888: 6736 elements scheduled.
14:07:55 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:55 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:55 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:55 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:55 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:55 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:55 DEBUG opendrift.models.basemodel:1253: Data needed for 3264 elements
14:07:55 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:55 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:55 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:55 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:55 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:55 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:55 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:55 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:55 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:55 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:55 DEBUG opendrift.models.basemodel:1253: Data needed for 3264 elements
14:07:55 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:55 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 05:00:00 (before)
2023-09-02 06:00:00 (after)
14:07:56 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:56 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:56 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:56 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:56 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:56 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:56 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 25x22x5) for time after (2023-09-02 06:00:00)
14:07:56 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 05:00:00) in space (linearNDFast)
14:07:56 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:56 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 06:00:00) in space (linearNDFast)
14:07:56 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1721 elements, expanding data 1
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 2
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1721 elements, expanding data 1
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 2
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1801 elements, expanding data 1
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 92 elements, expanding data 2
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1801 elements, expanding data 1
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 92 elements, expanding data 2
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1801 elements, expanding data 1
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 92 elements, expanding data 2
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1801 elements, expanding data 1
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 92 elements, expanding data 2
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1801 elements, expanding data 1
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 92 elements, expanding data 2
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2430 elements, expanding data 1
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 928 elements, expanding data 2
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2430 elements, expanding data 1
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 928 elements, expanding data 2
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2430 elements, expanding data 1
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 928 elements, expanding data 2
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2430 elements, expanding data 1
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 928 elements, expanding data 2
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2430 elements, expanding data 1
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 928 elements, expanding data 2
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1721 elements, expanding data 1
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 2
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1721 elements, expanding data 1
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 2
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1721 elements, expanding data 1
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 2
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1721 elements, expanding data 1
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 2
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1721 elements, expanding data 1
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 2
14:07:56 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 05:00:00, weight 0.39) and
after (2023-09-02 06:00:00, weight 0.61) in time
14:07:56 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.060274772737074 and -58.962529137366246 degrees.
14:07:56 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.060274772737074 and -58.962529137366246 degrees.
14:07:56 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:56 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:56 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:56 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:56 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:56 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:56 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.799955 (min) 1.38409 (max)
14:07:56 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.967545 (min) 0.835697 (max)
14:07:56 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -8.54788e-05 (min) 0.000637803 (max)
14:07:56 DEBUG opendrift.models.basemodel:1524: x_wind: -5.93134 (min) 7.32937 (max)
14:07:56 DEBUG opendrift.models.basemodel:1524: y_wind: -8.8105 (min) 4.19561 (max)
14:07:56 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:56 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:56 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:56 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:56 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:56 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:56 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:56 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3624 (max)
14:07:56 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:56 DEBUG opendrift.models.basemodel:1527: 3264 active elements
14:07:56 DEBUG opendrift.models.basemodel:1538: 59.1031330571355 <- latitude -> 59.185418856612515
14:07:56 DEBUG opendrift.models.basemodel:1543: 10.939735795416437 <- longitude -> 11.037481430987425
14:07:56 DEBUG opendrift.models.basemodel:1548: -14.01900863647461 <- z -> 0.0
14:07:56 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:56 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:56 DEBUG opendrift.models.physics_methods:1050: min: 0.079936, mean: 2.875829, max: 7.570079
14:07:56 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.079936, mean: 2.875829, max: 7.570079
14:07:56 DEBUG opendrift.models.basemodel:813: 431 elements hit coastline, moving back to water
14:07:56 DEBUG opendrift.models.basemodel:836: Lifting 103 elements to seafloor.
14:07:56 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:56 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:56 DEBUG opendrift.models.physics_methods:828: Advecting 35 of 3264 elements above 0.100m with wind-sheared ocean current (0.014962 m/s - 0.154839 m/s)
14:07:56 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:56 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:56 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.0709133795352745
14:07:56 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:56 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:56 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:56 DEBUG opendrift.models.oceandrift:582: 408 elements penetrated seafloor, lifting up
14:07:56 DEBUG opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
14:07:56 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
14:07:56 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
14:07:56 DEBUG opendrift.models.oceandrift:582: 277 elements penetrated seafloor, lifting up
14:07:56 DEBUG opendrift.models.oceandrift:600: 27 elements reached seafloor, set to bottom
14:07:56 DEBUG opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
14:07:56 DEBUG opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
14:07:56 DEBUG opendrift.models.oceandrift:582: 265 elements penetrated seafloor, lifting up
14:07:56 DEBUG opendrift.models.oceandrift:600: 42 elements reached seafloor, set to bottom
14:07:56 DEBUG opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
14:07:56 DEBUG opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
14:07:56 DEBUG opendrift.models.oceandrift:582: 231 elements penetrated seafloor, lifting up
14:07:56 DEBUG opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
14:07:56 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
14:07:56 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
14:07:56 DEBUG opendrift.models.oceandrift:582: 238 elements penetrated seafloor, lifting up
14:07:56 DEBUG opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
14:07:56 DEBUG opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
14:07:56 DEBUG opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
14:07:56 DEBUG opendrift.models.oceandrift:582: 237 elements penetrated seafloor, lifting up
14:07:56 DEBUG opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
14:07:56 DEBUG opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
14:07:56 DEBUG opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
14:07:56 DEBUG opendrift.models.oceandrift:582: 248 elements penetrated seafloor, lifting up
14:07:56 DEBUG opendrift.models.oceandrift:600: 40 elements reached seafloor, set to bottom
14:07:56 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
14:07:56 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
14:07:56 DEBUG opendrift.models.oceandrift:582: 222 elements penetrated seafloor, lifting up
14:07:56 DEBUG opendrift.models.oceandrift:600: 29 elements reached seafloor, set to bottom
14:07:56 DEBUG opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
14:07:56 DEBUG opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
14:07:56 DEBUG opendrift.models.oceandrift:582: 215 elements penetrated seafloor, lifting up
14:07:56 DEBUG opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
14:07:56 DEBUG opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
14:07:56 DEBUG opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
14:07:56 DEBUG opendrift.models.oceandrift:582: 218 elements penetrated seafloor, lifting up
14:07:56 DEBUG opendrift.models.oceandrift:600: 40 elements reached seafloor, set to bottom
14:07:56 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
14:07:56 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
14:07:56 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:56 DEBUG opendrift.models.basemodel:2945: 3264 active elements (0 deactivated)
14:07:56 DEBUG opendrift.models.basemodel:1658: to be seeded: 6736, already seeded 3264
14:07:56 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:07:56 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:56 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:56 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:56 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:56 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:56 DEBUG opendrift.models.basemodel:1253: Data needed for 3299 elements
14:07:56 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:56 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 05:00:00 (before)
2023-09-02 06:00:00 (after)
14:07:56 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 05:00:00) in space (linearNDFast)
14:07:56 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:56 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:56 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:56 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:56 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:56 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:56 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.303 (max)
14:07:56 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:56 DEBUG opendrift.models.basemodel:1527: 3299 active elements
14:07:56 DEBUG opendrift.models.basemodel:1538: 59.103750099816374 <- latitude -> 59.18780391515757
14:07:56 DEBUG opendrift.models.basemodel:1543: 10.941422780398321 <- longitude -> 11.037064679007466
14:07:56 DEBUG opendrift.models.basemodel:1548: -14.280084838867188 <- z -> 0.0
14:07:56 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:56 DEBUG opendrift.models.basemodel:836: Lifting 255 elements to seafloor.
14:07:56 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:56 INFO opendrift.models.basemodel:2882: 2023-09-02 05:46:21.121579 - step 95 of 216 - 3299 active elements (0 deactivated)
14:07:56 DEBUG opendrift.models.basemodel:2888: 6701 elements scheduled.
14:07:56 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:56 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:56 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:56 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:56 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:56 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:56 DEBUG opendrift.models.basemodel:1253: Data needed for 3299 elements
14:07:56 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:56 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:56 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:56 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:56 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:56 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:56 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:56 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:56 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:56 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:56 DEBUG opendrift.models.basemodel:1253: Data needed for 3299 elements
14:07:56 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:56 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 05:00:00 (before)
2023-09-02 06:00:00 (after)
14:07:57 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:57 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:57 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:57 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:57 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:57 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:57 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x23x5) for time after (2023-09-02 06:00:00)
14:07:57 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 05:00:00) in space (linearNDFast)
14:07:57 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:57 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 06:00:00) in space (linearNDFast)
14:07:57 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1741 elements, expanding data 1
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1741 elements, expanding data 1
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1821 elements, expanding data 1
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 90 elements, expanding data 2
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1821 elements, expanding data 1
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 90 elements, expanding data 2
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1821 elements, expanding data 1
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 90 elements, expanding data 2
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1821 elements, expanding data 1
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 90 elements, expanding data 2
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1821 elements, expanding data 1
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 90 elements, expanding data 2
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2486 elements, expanding data 1
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 949 elements, expanding data 2
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2486 elements, expanding data 1
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 949 elements, expanding data 2
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2486 elements, expanding data 1
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 949 elements, expanding data 2
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2486 elements, expanding data 1
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 949 elements, expanding data 2
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2486 elements, expanding data 1
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 949 elements, expanding data 2
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1741 elements, expanding data 1
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1741 elements, expanding data 1
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1741 elements, expanding data 1
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1741 elements, expanding data 1
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1741 elements, expanding data 1
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:57 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 05:00:00, weight 0.23) and
after (2023-09-02 06:00:00, weight 0.77) in time
14:07:57 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05858779109134 and -58.962945884481854 degrees.
14:07:57 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05858779109134 and -58.962945884481854 degrees.
14:07:57 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:57 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:57 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:57 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:57 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:57 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:57 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.731141 (min) 1.16363 (max)
14:07:57 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.11088 (min) 0.715203 (max)
14:07:57 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -7.51377e-05 (min) 0.00066244 (max)
14:07:57 DEBUG opendrift.models.basemodel:1524: x_wind: -7.15833 (min) 7.74285 (max)
14:07:57 DEBUG opendrift.models.basemodel:1524: y_wind: -11.0704 (min) 5.84232 (max)
14:07:57 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:57 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:57 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:57 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:57 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:57 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:57 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:57 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.303 (max)
14:07:57 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:57 DEBUG opendrift.models.basemodel:1527: 3299 active elements
14:07:57 DEBUG opendrift.models.basemodel:1538: 59.103750099816374 <- latitude -> 59.18780391515757
14:07:57 DEBUG opendrift.models.basemodel:1543: 10.941422780398321 <- longitude -> 11.037064679007466
14:07:57 DEBUG opendrift.models.basemodel:1548: -14.280084838867188 <- z -> 0.0
14:07:57 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:57 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:57 DEBUG opendrift.models.physics_methods:1050: min: 0.072324, mean: 2.936260, max: 9.480718
14:07:57 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.072324, mean: 2.936260, max: 9.480718
14:07:57 DEBUG opendrift.models.basemodel:813: 451 elements hit coastline, moving back to water
14:07:57 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
14:07:57 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:57 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:57 DEBUG opendrift.models.physics_methods:828: Advecting 36 of 3299 elements above 0.100m with wind-sheared ocean current (0.005361 m/s - 0.133682 m/s)
14:07:57 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:57 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:57 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.1112245676847267
14:07:57 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:57 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:57 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:57 DEBUG opendrift.models.oceandrift:582: 361 elements penetrated seafloor, lifting up
14:07:57 DEBUG opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
14:07:57 DEBUG opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
14:07:57 DEBUG opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
14:07:57 DEBUG opendrift.models.oceandrift:582: 301 elements penetrated seafloor, lifting up
14:07:57 DEBUG opendrift.models.oceandrift:600: 42 elements reached seafloor, set to bottom
14:07:57 DEBUG opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
14:07:57 DEBUG opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
14:07:57 DEBUG opendrift.models.oceandrift:582: 258 elements penetrated seafloor, lifting up
14:07:57 DEBUG opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
14:07:57 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
14:07:57 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
14:07:57 DEBUG opendrift.models.oceandrift:582: 241 elements penetrated seafloor, lifting up
14:07:57 DEBUG opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
14:07:57 DEBUG opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
14:07:57 DEBUG opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
14:07:57 DEBUG opendrift.models.oceandrift:582: 256 elements penetrated seafloor, lifting up
14:07:57 DEBUG opendrift.models.oceandrift:600: 27 elements reached seafloor, set to bottom
14:07:57 DEBUG opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
14:07:57 DEBUG opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
14:07:57 DEBUG opendrift.models.oceandrift:582: 214 elements penetrated seafloor, lifting up
14:07:57 DEBUG opendrift.models.oceandrift:600: 40 elements reached seafloor, set to bottom
14:07:57 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
14:07:57 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
14:07:57 DEBUG opendrift.models.oceandrift:582: 242 elements penetrated seafloor, lifting up
14:07:57 DEBUG opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
14:07:57 DEBUG opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
14:07:57 DEBUG opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
14:07:57 DEBUG opendrift.models.oceandrift:582: 257 elements penetrated seafloor, lifting up
14:07:57 DEBUG opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
14:07:57 DEBUG opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
14:07:57 DEBUG opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
14:07:57 DEBUG opendrift.models.oceandrift:582: 246 elements penetrated seafloor, lifting up
14:07:57 DEBUG opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
14:07:57 DEBUG opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
14:07:57 DEBUG opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
14:07:57 DEBUG opendrift.models.oceandrift:582: 228 elements penetrated seafloor, lifting up
14:07:57 DEBUG opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
14:07:57 DEBUG opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
14:07:57 DEBUG opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
14:07:57 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:57 DEBUG opendrift.models.basemodel:2945: 3299 active elements (0 deactivated)
14:07:57 DEBUG opendrift.models.basemodel:1658: to be seeded: 6701, already seeded 3299
14:07:57 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:07:57 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:57 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:57 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:57 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:57 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:57 DEBUG opendrift.models.basemodel:1253: Data needed for 3334 elements
14:07:57 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:57 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 05:00:00 (before)
2023-09-02 06:00:00 (after)
14:07:57 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 05:00:00) in space (linearNDFast)
14:07:57 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:57 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:57 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:57 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:57 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:57 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:57 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.1547 (max)
14:07:57 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:57 DEBUG opendrift.models.basemodel:1527: 3334 active elements
14:07:57 DEBUG opendrift.models.basemodel:1538: 59.104427092191145 <- latitude -> 59.18765659016451
14:07:57 DEBUG opendrift.models.basemodel:1543: 10.938000847848153 <- longitude -> 11.037209846133361
14:07:57 DEBUG opendrift.models.basemodel:1548: -14.374141693115234 <- z -> 0.0
14:07:57 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:57 DEBUG opendrift.models.basemodel:836: Lifting 264 elements to seafloor.
14:07:57 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:57 INFO opendrift.models.basemodel:2882: 2023-09-02 05:56:21.121579 - step 96 of 216 - 3334 active elements (0 deactivated)
14:07:57 DEBUG opendrift.models.basemodel:2888: 6666 elements scheduled.
14:07:57 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:57 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:57 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:57 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:57 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:57 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:57 DEBUG opendrift.models.basemodel:1253: Data needed for 3334 elements
14:07:57 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:57 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:57 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:57 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:57 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:57 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:57 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:57 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:57 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:57 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:57 DEBUG opendrift.models.basemodel:1253: Data needed for 3334 elements
14:07:57 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:57 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 05:00:00 (before)
2023-09-02 06:00:00 (after)
14:07:57 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:57 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:57 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:57 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:57 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:57 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:57 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 25x23x5) for time after (2023-09-02 06:00:00)
14:07:57 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 05:00:00) in space (linearNDFast)
14:07:57 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:57 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 06:00:00) in space (linearNDFast)
14:07:57 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1765 elements, expanding data 1
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 2
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1765 elements, expanding data 1
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 2
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1856 elements, expanding data 1
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 2
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1856 elements, expanding data 1
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 2
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1856 elements, expanding data 1
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 2
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1856 elements, expanding data 1
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 2
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1856 elements, expanding data 1
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 2
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2488 elements, expanding data 1
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 982 elements, expanding data 2
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2488 elements, expanding data 1
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 982 elements, expanding data 2
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2488 elements, expanding data 1
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 982 elements, expanding data 2
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2488 elements, expanding data 1
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 982 elements, expanding data 2
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2488 elements, expanding data 1
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 982 elements, expanding data 2
14:07:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1765 elements, expanding data 1
14:07:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 2
14:07:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1765 elements, expanding data 1
14:07:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 2
14:07:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1765 elements, expanding data 1
14:07:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 2
14:07:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1765 elements, expanding data 1
14:07:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 2
14:07:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1765 elements, expanding data 1
14:07:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 2
14:07:58 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 05:00:00, weight 0.06) and
after (2023-09-02 06:00:00, weight 0.94) in time
14:07:58 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.062009720064296 and -58.96280071575644 degrees.
14:07:58 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.062009720064296 and -58.96280071575644 degrees.
14:07:58 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:58 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:58 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:58 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:58 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:58 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:58 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.699356 (min) 1.11626 (max)
14:07:58 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.03531 (min) 0.738258 (max)
14:07:58 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -7.63987e-05 (min) 0.000629075 (max)
14:07:58 DEBUG opendrift.models.basemodel:1524: x_wind: -6.27229 (min) 7.38362 (max)
14:07:58 DEBUG opendrift.models.basemodel:1524: y_wind: -9.53576 (min) 4.2106 (max)
14:07:58 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:58 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:58 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:58 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:58 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:58 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:58 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:58 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.1547 (max)
14:07:58 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:58 DEBUG opendrift.models.basemodel:1527: 3334 active elements
14:07:58 DEBUG opendrift.models.basemodel:1538: 59.104427092191145 <- latitude -> 59.18765659016451
14:07:58 DEBUG opendrift.models.basemodel:1543: 10.938000847848153 <- longitude -> 11.037209846133361
14:07:58 DEBUG opendrift.models.basemodel:1548: -14.331604957580566 <- z -> 0.0
14:07:58 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:58 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:58 DEBUG opendrift.models.physics_methods:1050: min: 0.063165, mean: 3.015016, max: 8.583907
14:07:58 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.063165, mean: 3.015016, max: 8.583907
14:07:58 DEBUG opendrift.models.basemodel:813: 476 elements hit coastline, moving back to water
14:07:58 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:07:58 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:58 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:58 DEBUG opendrift.models.physics_methods:828: Advecting 37 of 3334 elements above 0.100m with wind-sheared ocean current (0.004621 m/s - 0.175419 m/s)
14:07:58 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:58 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:58 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.0911783486433792
14:07:58 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:58 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:58 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:58 DEBUG opendrift.models.oceandrift:582: 392 elements penetrated seafloor, lifting up
14:07:58 DEBUG opendrift.models.oceandrift:600: 59 elements reached seafloor, set to bottom
14:07:58 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
14:07:58 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
14:07:58 DEBUG opendrift.models.oceandrift:582: 287 elements penetrated seafloor, lifting up
14:07:58 DEBUG opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
14:07:58 DEBUG opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
14:07:58 DEBUG opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
14:07:58 DEBUG opendrift.models.oceandrift:582: 292 elements penetrated seafloor, lifting up
14:07:58 DEBUG opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
14:07:58 DEBUG opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
14:07:58 DEBUG opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
14:07:58 DEBUG opendrift.models.oceandrift:582: 248 elements penetrated seafloor, lifting up
14:07:58 DEBUG opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
14:07:58 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
14:07:58 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
14:07:58 DEBUG opendrift.models.oceandrift:582: 246 elements penetrated seafloor, lifting up
14:07:58 DEBUG opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
14:07:58 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
14:07:58 DEBUG opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
14:07:58 DEBUG opendrift.models.oceandrift:582: 267 elements penetrated seafloor, lifting up
14:07:58 DEBUG opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
14:07:58 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
14:07:58 DEBUG opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
14:07:58 DEBUG opendrift.models.oceandrift:582: 268 elements penetrated seafloor, lifting up
14:07:58 DEBUG opendrift.models.oceandrift:600: 42 elements reached seafloor, set to bottom
14:07:58 DEBUG opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
14:07:58 DEBUG opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
14:07:58 DEBUG opendrift.models.oceandrift:582: 258 elements penetrated seafloor, lifting up
14:07:58 DEBUG opendrift.models.oceandrift:600: 27 elements reached seafloor, set to bottom
14:07:58 DEBUG opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
14:07:58 DEBUG opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
14:07:58 DEBUG opendrift.models.oceandrift:582: 222 elements penetrated seafloor, lifting up
14:07:58 DEBUG opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
14:07:58 DEBUG opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
14:07:58 DEBUG opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
14:07:58 DEBUG opendrift.models.oceandrift:582: 201 elements penetrated seafloor, lifting up
14:07:58 DEBUG opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
14:07:58 DEBUG opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
14:07:58 DEBUG opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
14:07:58 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:58 DEBUG opendrift.models.basemodel:2945: 3334 active elements (0 deactivated)
14:07:58 DEBUG opendrift.models.basemodel:1658: to be seeded: 6666, already seeded 3334
14:07:58 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:07:58 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:58 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:58 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:58 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:58 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:58 DEBUG opendrift.models.basemodel:1253: Data needed for 3368 elements
14:07:58 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:58 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 06:00:00 (before)
2023-09-02 07:00:00 (after)
14:07:58 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 06:00:00) in space (linearNDFast)
14:07:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:58 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:58 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:58 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:58 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:58 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:58 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.2259 (max)
14:07:58 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:58 DEBUG opendrift.models.basemodel:1527: 3368 active elements
14:07:58 DEBUG opendrift.models.basemodel:1538: 59.10400585786175 <- latitude -> 59.18668019862975
14:07:58 DEBUG opendrift.models.basemodel:1543: 10.933806161371551 <- longitude -> 11.037209846133361
14:07:58 DEBUG opendrift.models.basemodel:1548: -14.384640276966964 <- z -> 0.0
14:07:58 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:58 DEBUG opendrift.models.basemodel:836: Lifting 244 elements to seafloor.
14:07:58 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:58 INFO opendrift.models.basemodel:2882: 2023-09-02 06:06:21.121579 - step 97 of 216 - 3368 active elements (0 deactivated)
14:07:58 DEBUG opendrift.models.basemodel:2888: 6632 elements scheduled.
14:07:58 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:58 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:58 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:58 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:58 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:58 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:58 DEBUG opendrift.models.basemodel:1253: Data needed for 3368 elements
14:07:58 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:58 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:58 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:58 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:58 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:58 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:58 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:58 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:58 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:58 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:58 DEBUG opendrift.models.basemodel:1253: Data needed for 3368 elements
14:07:58 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:58 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 06:00:00 (before)
2023-09-02 07:00:00 (after)
14:07:59 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:59 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:59 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:59 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:59 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:59 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:59 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 25x22x5) for time after (2023-09-02 07:00:00)
14:07:59 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 06:00:00) in space (linearNDFast)
14:07:59 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:59 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 07:00:00) in space (linearNDFast)
14:07:59 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1803 elements, expanding data 1
14:07:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
14:07:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1803 elements, expanding data 1
14:07:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
14:07:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1900 elements, expanding data 1
14:07:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 2
14:07:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
14:07:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1900 elements, expanding data 1
14:07:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 2
14:07:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
14:07:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1900 elements, expanding data 1
14:07:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 2
14:07:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
14:07:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1900 elements, expanding data 1
14:07:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 2
14:07:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
14:07:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1900 elements, expanding data 1
14:07:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 2
14:07:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
14:07:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2521 elements, expanding data 1
14:07:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 985 elements, expanding data 2
14:07:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2521 elements, expanding data 1
14:07:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 985 elements, expanding data 2
14:07:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2521 elements, expanding data 1
14:07:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 985 elements, expanding data 2
14:07:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2521 elements, expanding data 1
14:07:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 985 elements, expanding data 2
14:07:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2521 elements, expanding data 1
14:07:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 985 elements, expanding data 2
14:07:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1803 elements, expanding data 1
14:07:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
14:07:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1803 elements, expanding data 1
14:07:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
14:07:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1803 elements, expanding data 1
14:07:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
14:07:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1803 elements, expanding data 1
14:07:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
14:07:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1803 elements, expanding data 1
14:07:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
14:07:59 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 06:00:00, weight 0.89) and
after (2023-09-02 07:00:00, weight 0.11) in time
14:07:59 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.066204413810866 and -58.96280071575644 degrees.
14:07:59 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.066204413810866 and -58.96280071575644 degrees.
14:07:59 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:59 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:59 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:59 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:59 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:59 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:59 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.740069 (min) 1.14025 (max)
14:07:59 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.17672 (min) 0.8186 (max)
14:07:59 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -8.39853e-05 (min) 0.000822805 (max)
14:07:59 DEBUG opendrift.models.basemodel:1524: x_wind: -6.38315 (min) 7.27747 (max)
14:07:59 DEBUG opendrift.models.basemodel:1524: y_wind: -10.0304 (min) 4.37461 (max)
14:07:59 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:59 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:59 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:59 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:59 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:07:59 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:59 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:59 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.2259 (max)
14:07:59 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:59 DEBUG opendrift.models.basemodel:1527: 3368 active elements
14:07:59 DEBUG opendrift.models.basemodel:1538: 59.10400585786175 <- latitude -> 59.18668019862975
14:07:59 DEBUG opendrift.models.basemodel:1543: 10.933806161371551 <- longitude -> 11.037209846133361
14:07:59 DEBUG opendrift.models.basemodel:1548: -14.384640276966964 <- z -> 0.0
14:07:59 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:59 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:59 DEBUG opendrift.models.physics_methods:1050: min: 0.097711, mean: 3.092638, max: 9.289503
14:07:59 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.097711, mean: 3.092638, max: 9.289503
14:07:59 DEBUG opendrift.models.basemodel:813: 451 elements hit coastline, moving back to water
14:07:59 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:07:59 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:07:59 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:59 DEBUG opendrift.models.physics_methods:828: Advecting 38 of 3368 elements above 0.100m with wind-sheared ocean current (0.005484 m/s - 0.158416 m/s)
14:07:59 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:59 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:59 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10678342932374954
14:07:59 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:59 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:59 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:59 DEBUG opendrift.models.oceandrift:582: 372 elements penetrated seafloor, lifting up
14:07:59 DEBUG opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
14:07:59 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
14:07:59 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
14:07:59 DEBUG opendrift.models.oceandrift:582: 285 elements penetrated seafloor, lifting up
14:07:59 DEBUG opendrift.models.oceandrift:600: 40 elements reached seafloor, set to bottom
14:07:59 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
14:07:59 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
14:07:59 DEBUG opendrift.models.oceandrift:582: 264 elements penetrated seafloor, lifting up
14:07:59 DEBUG opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
14:07:59 DEBUG opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
14:07:59 DEBUG opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
14:07:59 DEBUG opendrift.models.oceandrift:582: 256 elements penetrated seafloor, lifting up
14:07:59 DEBUG opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
14:07:59 DEBUG opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
14:07:59 DEBUG opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
14:07:59 DEBUG opendrift.models.oceandrift:582: 224 elements penetrated seafloor, lifting up
14:07:59 DEBUG opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
14:07:59 DEBUG opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
14:07:59 DEBUG opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
14:07:59 DEBUG opendrift.models.oceandrift:582: 237 elements penetrated seafloor, lifting up
14:07:59 DEBUG opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
14:07:59 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
14:07:59 DEBUG opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
14:07:59 DEBUG opendrift.models.oceandrift:582: 237 elements penetrated seafloor, lifting up
14:07:59 DEBUG opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
14:07:59 DEBUG opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
14:07:59 DEBUG opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
14:07:59 DEBUG opendrift.models.oceandrift:582: 211 elements penetrated seafloor, lifting up
14:07:59 DEBUG opendrift.models.oceandrift:600: 42 elements reached seafloor, set to bottom
14:07:59 DEBUG opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
14:07:59 DEBUG opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
14:07:59 DEBUG opendrift.models.oceandrift:582: 218 elements penetrated seafloor, lifting up
14:07:59 DEBUG opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
14:07:59 DEBUG opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
14:07:59 DEBUG opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
14:07:59 DEBUG opendrift.models.oceandrift:582: 208 elements penetrated seafloor, lifting up
14:07:59 DEBUG opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
14:07:59 DEBUG opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
14:07:59 DEBUG opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
14:07:59 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:59 DEBUG opendrift.models.basemodel:2945: 3368 active elements (0 deactivated)
14:07:59 DEBUG opendrift.models.basemodel:1658: to be seeded: 6632, already seeded 3368
14:07:59 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:07:59 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:59 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:59 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:59 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:59 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:59 DEBUG opendrift.models.basemodel:1253: Data needed for 3403 elements
14:07:59 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:59 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 06:00:00 (before)
2023-09-02 07:00:00 (after)
14:07:59 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 06:00:00) in space (linearNDFast)
14:07:59 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:59 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:59 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:59 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:07:59 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:59 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:59 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.1959 (max)
14:07:59 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:07:59 DEBUG opendrift.models.basemodel:1527: 3403 active elements
14:07:59 DEBUG opendrift.models.basemodel:1538: 59.10490332496158 <- latitude -> 59.18655409780849
14:07:59 DEBUG opendrift.models.basemodel:1543: 10.933605586864992 <- longitude -> 11.037209846133361
14:07:59 DEBUG opendrift.models.basemodel:1548: -14.275310516357422 <- z -> 0.0
14:07:59 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:07:59 DEBUG opendrift.models.basemodel:836: Lifting 245 elements to seafloor.
14:07:59 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:07:59 INFO opendrift.models.basemodel:2882: 2023-09-02 06:16:21.121579 - step 98 of 216 - 3403 active elements (0 deactivated)
14:07:59 DEBUG opendrift.models.basemodel:2888: 6597 elements scheduled.
14:07:59 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:07:59 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:59 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:59 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:59 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:59 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:59 DEBUG opendrift.models.basemodel:1253: Data needed for 3403 elements
14:07:59 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:59 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:59 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:59 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:59 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:59 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:07:59 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:59 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:07:59 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:59 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:07:59 DEBUG opendrift.models.basemodel:1253: Data needed for 3403 elements
14:07:59 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:59 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 06:00:00 (before)
2023-09-02 07:00:00 (after)
14:08:00 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:00 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:00 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:00 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:00 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:00 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:00 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 25x23x5) for time after (2023-09-02 07:00:00)
14:08:00 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 06:00:00) in space (linearNDFast)
14:08:00 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:00 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 07:00:00) in space (linearNDFast)
14:08:00 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1806 elements, expanding data 1
14:08:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:08:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1806 elements, expanding data 1
14:08:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:08:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1901 elements, expanding data 1
14:08:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 103 elements, expanding data 2
14:08:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
14:08:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1901 elements, expanding data 1
14:08:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 103 elements, expanding data 2
14:08:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
14:08:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1901 elements, expanding data 1
14:08:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 103 elements, expanding data 2
14:08:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
14:08:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1901 elements, expanding data 1
14:08:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 103 elements, expanding data 2
14:08:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
14:08:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1901 elements, expanding data 1
14:08:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 103 elements, expanding data 2
14:08:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
14:08:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2570 elements, expanding data 1
14:08:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 975 elements, expanding data 2
14:08:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2570 elements, expanding data 1
14:08:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 975 elements, expanding data 2
14:08:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2570 elements, expanding data 1
14:08:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 975 elements, expanding data 2
14:08:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2570 elements, expanding data 1
14:08:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 975 elements, expanding data 2
14:08:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2570 elements, expanding data 1
14:08:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 975 elements, expanding data 2
14:08:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1806 elements, expanding data 1
14:08:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:08:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1806 elements, expanding data 1
14:08:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:08:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1806 elements, expanding data 1
14:08:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:08:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1806 elements, expanding data 1
14:08:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:08:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1806 elements, expanding data 1
14:08:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:08:00 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 06:00:00, weight 0.73) and
after (2023-09-02 07:00:00, weight 0.27) in time
14:08:00 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.06640499001204 and -58.96280071575644 degrees.
14:08:00 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.06640499001204 and -58.96280071575644 degrees.
14:08:00 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:00 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:00 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:00 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:00 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:00 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:00 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.802599 (min) 1.09922 (max)
14:08:00 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.24524 (min) 0.764276 (max)
14:08:00 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -7.43983e-05 (min) 0.000721444 (max)
14:08:00 DEBUG opendrift.models.basemodel:1524: x_wind: -6.2395 (min) 9.89639 (max)
14:08:00 DEBUG opendrift.models.basemodel:1524: y_wind: -9.91598 (min) 6.41262 (max)
14:08:00 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:00 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:00 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:00 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:00 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:00 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:00 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:00 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.1959 (max)
14:08:00 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:00 DEBUG opendrift.models.basemodel:1527: 3403 active elements
14:08:00 DEBUG opendrift.models.basemodel:1538: 59.10490332496158 <- latitude -> 59.18655409780849
14:08:00 DEBUG opendrift.models.basemodel:1543: 10.933605586864992 <- longitude -> 11.037209846133361
14:08:00 DEBUG opendrift.models.basemodel:1548: -14.195211410522461 <- z -> 0.0
14:08:00 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:00 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:00 DEBUG opendrift.models.physics_methods:1050: min: 0.051291, mean: 3.150777, max: 9.468147
14:08:00 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.051291, mean: 3.150777, max: 9.468147
14:08:00 DEBUG opendrift.models.basemodel:813: 472 elements hit coastline, moving back to water
14:08:00 DEBUG opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
14:08:00 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:00 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:00 DEBUG opendrift.models.physics_methods:828: Advecting 38 of 3403 elements above 0.100m with wind-sheared ocean current (0.001235 m/s - 0.126797 m/s)
14:08:00 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:00 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:00 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.11092980241115569
14:08:00 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:00 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:00 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:00 DEBUG opendrift.models.oceandrift:582: 380 elements penetrated seafloor, lifting up
14:08:00 DEBUG opendrift.models.oceandrift:600: 56 elements reached seafloor, set to bottom
14:08:00 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
14:08:00 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
14:08:00 DEBUG opendrift.models.oceandrift:582: 304 elements penetrated seafloor, lifting up
14:08:00 DEBUG opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
14:08:00 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
14:08:00 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
14:08:00 DEBUG opendrift.models.oceandrift:582: 270 elements penetrated seafloor, lifting up
14:08:00 DEBUG opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
14:08:00 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
14:08:00 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
14:08:00 DEBUG opendrift.models.oceandrift:582: 237 elements penetrated seafloor, lifting up
14:08:00 DEBUG opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
14:08:00 DEBUG opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
14:08:00 DEBUG opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
14:08:00 DEBUG opendrift.models.oceandrift:582: 243 elements penetrated seafloor, lifting up
14:08:00 DEBUG opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
14:08:00 DEBUG opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
14:08:00 DEBUG opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
14:08:00 DEBUG opendrift.models.oceandrift:582: 241 elements penetrated seafloor, lifting up
14:08:00 DEBUG opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
14:08:00 DEBUG opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
14:08:00 DEBUG opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
14:08:00 DEBUG opendrift.models.oceandrift:582: 222 elements penetrated seafloor, lifting up
14:08:00 DEBUG opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
14:08:00 DEBUG opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
14:08:00 DEBUG opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
14:08:00 DEBUG opendrift.models.oceandrift:582: 236 elements penetrated seafloor, lifting up
14:08:00 DEBUG opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
14:08:00 DEBUG opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
14:08:00 DEBUG opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
14:08:00 DEBUG opendrift.models.oceandrift:582: 221 elements penetrated seafloor, lifting up
14:08:00 DEBUG opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
14:08:00 DEBUG opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
14:08:00 DEBUG opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
14:08:00 DEBUG opendrift.models.oceandrift:582: 204 elements penetrated seafloor, lifting up
14:08:00 DEBUG opendrift.models.oceandrift:600: 19 elements reached seafloor, set to bottom
14:08:00 DEBUG opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
14:08:00 DEBUG opendrift.models.sedimentdrift:112: Settling 19 elements at seafloor
14:08:00 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:00 DEBUG opendrift.models.basemodel:2945: 3403 active elements (0 deactivated)
14:08:00 DEBUG opendrift.models.basemodel:1658: to be seeded: 6597, already seeded 3403
14:08:00 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:08:00 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:00 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:00 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:00 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:00 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:00 DEBUG opendrift.models.basemodel:1253: Data needed for 3438 elements
14:08:00 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:00 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 06:00:00 (before)
2023-09-02 07:00:00 (after)
14:08:00 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 06:00:00) in space (linearNDFast)
14:08:00 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:00 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:00 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:00 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:00 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:00 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:00 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.2502 (max)
14:08:00 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:00 DEBUG opendrift.models.basemodel:1527: 3438 active elements
14:08:00 DEBUG opendrift.models.basemodel:1538: 59.10468548621556 <- latitude -> 59.188097569621824
14:08:00 DEBUG opendrift.models.basemodel:1543: 10.930987970960468 <- longitude -> 11.038130194060365
14:08:00 DEBUG opendrift.models.basemodel:1548: -14.828081130981445 <- z -> 0.0
14:08:00 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:00 DEBUG opendrift.models.basemodel:836: Lifting 265 elements to seafloor.
14:08:00 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:00 INFO opendrift.models.basemodel:2882: 2023-09-02 06:26:21.121579 - step 99 of 216 - 3438 active elements (0 deactivated)
14:08:00 DEBUG opendrift.models.basemodel:2888: 6562 elements scheduled.
14:08:00 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:00 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:00 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:00 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:00 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:00 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:00 DEBUG opendrift.models.basemodel:1253: Data needed for 3438 elements
14:08:00 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:00 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:00 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:00 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:00 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:00 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:00 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:00 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:00 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:00 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:00 DEBUG opendrift.models.basemodel:1253: Data needed for 3438 elements
14:08:00 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:00 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 06:00:00 (before)
2023-09-02 07:00:00 (after)
14:08:01 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:01 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:01 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:01 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:01 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:01 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:01 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 25x23x5) for time after (2023-09-02 07:00:00)
14:08:01 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 06:00:00) in space (linearNDFast)
14:08:01 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:01 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 07:00:00) in space (linearNDFast)
14:08:01 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1847 elements, expanding data 1
14:08:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
14:08:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1847 elements, expanding data 1
14:08:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
14:08:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1933 elements, expanding data 1
14:08:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 2
14:08:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
14:08:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1933 elements, expanding data 1
14:08:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 2
14:08:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
14:08:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1933 elements, expanding data 1
14:08:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 2
14:08:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
14:08:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1933 elements, expanding data 1
14:08:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 2
14:08:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
14:08:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1933 elements, expanding data 1
14:08:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 2
14:08:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
14:08:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2624 elements, expanding data 1
14:08:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 980 elements, expanding data 2
14:08:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2624 elements, expanding data 1
14:08:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 980 elements, expanding data 2
14:08:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2624 elements, expanding data 1
14:08:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 980 elements, expanding data 2
14:08:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2624 elements, expanding data 1
14:08:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 980 elements, expanding data 2
14:08:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2624 elements, expanding data 1
14:08:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 980 elements, expanding data 2
14:08:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1847 elements, expanding data 1
14:08:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
14:08:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1847 elements, expanding data 1
14:08:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
14:08:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1847 elements, expanding data 1
14:08:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
14:08:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1847 elements, expanding data 1
14:08:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
14:08:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1847 elements, expanding data 1
14:08:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
14:08:01 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 06:00:00, weight 0.56) and
after (2023-09-02 07:00:00, weight 0.44) in time
14:08:01 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.06902259642647 and -58.96188036723826 degrees.
14:08:01 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.06902259642647 and -58.96188036723826 degrees.
14:08:01 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:01 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:01 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:01 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:01 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:01 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:01 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.886606 (min) 1.29884 (max)
14:08:01 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.01068 (min) 0.983943 (max)
14:08:01 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -6.35435e-05 (min) 0.000764114 (max)
14:08:01 DEBUG opendrift.models.basemodel:1524: x_wind: -5.74229 (min) 7.39446 (max)
14:08:01 DEBUG opendrift.models.basemodel:1524: y_wind: -12.3432 (min) 4.90735 (max)
14:08:01 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:01 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:01 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:01 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:01 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:01 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:01 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:01 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.2502 (max)
14:08:01 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:01 DEBUG opendrift.models.basemodel:1527: 3438 active elements
14:08:01 DEBUG opendrift.models.basemodel:1538: 59.10468548621556 <- latitude -> 59.188097569621824
14:08:01 DEBUG opendrift.models.basemodel:1543: 10.930987970960468 <- longitude -> 11.038130194060365
14:08:01 DEBUG opendrift.models.basemodel:1548: -14.828081130981445 <- z -> 0.0
14:08:01 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:01 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:01 DEBUG opendrift.models.physics_methods:1050: min: 0.103588, mean: 3.249115, max: 10.708135
14:08:01 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.103588, mean: 3.249115, max: 10.708135
14:08:01 DEBUG opendrift.models.basemodel:813: 473 elements hit coastline, moving back to water
14:08:01 DEBUG opendrift.models.basemodel:836: Lifting 105 elements to seafloor.
14:08:01 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:01 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:01 DEBUG opendrift.models.physics_methods:828: Advecting 39 of 3438 elements above 0.100m with wind-sheared ocean current (0.016459 m/s - 0.125821 m/s)
14:08:01 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:01 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:01 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.14188697110994336
14:08:01 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:01 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:01 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:01 DEBUG opendrift.models.oceandrift:582: 379 elements penetrated seafloor, lifting up
14:08:01 DEBUG opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
14:08:01 DEBUG opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
14:08:01 DEBUG opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
14:08:01 DEBUG opendrift.models.oceandrift:582: 300 elements penetrated seafloor, lifting up
14:08:01 DEBUG opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
14:08:01 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
14:08:01 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
14:08:01 DEBUG opendrift.models.oceandrift:582: 275 elements penetrated seafloor, lifting up
14:08:01 DEBUG opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
14:08:01 DEBUG opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
14:08:01 DEBUG opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
14:08:01 DEBUG opendrift.models.oceandrift:582: 279 elements penetrated seafloor, lifting up
14:08:01 DEBUG opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
14:08:01 DEBUG opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
14:08:01 DEBUG opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
14:08:01 DEBUG opendrift.models.oceandrift:582: 260 elements penetrated seafloor, lifting up
14:08:01 DEBUG opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
14:08:01 DEBUG opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
14:08:01 DEBUG opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
14:08:01 DEBUG opendrift.models.oceandrift:582: 259 elements penetrated seafloor, lifting up
14:08:01 DEBUG opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
14:08:01 DEBUG opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
14:08:01 DEBUG opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
14:08:01 DEBUG opendrift.models.oceandrift:582: 252 elements penetrated seafloor, lifting up
14:08:01 DEBUG opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
14:08:01 DEBUG opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
14:08:01 DEBUG opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
14:08:01 DEBUG opendrift.models.oceandrift:582: 244 elements penetrated seafloor, lifting up
14:08:01 DEBUG opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
14:08:01 DEBUG opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
14:08:01 DEBUG opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
14:08:01 DEBUG opendrift.models.oceandrift:582: 233 elements penetrated seafloor, lifting up
14:08:01 DEBUG opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
14:08:01 DEBUG opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
14:08:01 DEBUG opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
14:08:01 DEBUG opendrift.models.oceandrift:582: 213 elements penetrated seafloor, lifting up
14:08:01 DEBUG opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
14:08:01 DEBUG opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
14:08:01 DEBUG opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
14:08:01 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:01 DEBUG opendrift.models.basemodel:2945: 3438 active elements (0 deactivated)
14:08:01 DEBUG opendrift.models.basemodel:1658: to be seeded: 6562, already seeded 3438
14:08:01 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:08:01 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:01 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:01 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:01 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:01 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:01 DEBUG opendrift.models.basemodel:1253: Data needed for 3472 elements
14:08:01 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:01 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 06:00:00 (before)
2023-09-02 07:00:00 (after)
14:08:01 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 06:00:00) in space (linearNDFast)
14:08:01 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:01 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:01 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:01 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:01 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:01 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:01 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.1928 (max)
14:08:01 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:01 DEBUG opendrift.models.basemodel:1527: 3472 active elements
14:08:01 DEBUG opendrift.models.basemodel:1538: 59.105231637997996 <- latitude -> 59.186907400869416
14:08:01 DEBUG opendrift.models.basemodel:1543: 10.929418215201098 <- longitude -> 11.03819927720673
14:08:01 DEBUG opendrift.models.basemodel:1548: -14.828081130981445 <- z -> 0.0
14:08:01 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:01 DEBUG opendrift.models.basemodel:836: Lifting 218 elements to seafloor.
14:08:01 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:01 INFO opendrift.models.basemodel:2882: 2023-09-02 06:36:21.121579 - step 100 of 216 - 3472 active elements (0 deactivated)
14:08:01 DEBUG opendrift.models.basemodel:2888: 6528 elements scheduled.
14:08:01 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:01 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:01 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:01 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:01 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:01 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:01 DEBUG opendrift.models.basemodel:1253: Data needed for 3472 elements
14:08:01 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:01 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:01 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:01 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:01 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:01 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:01 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:01 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:01 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:01 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:01 DEBUG opendrift.models.basemodel:1253: Data needed for 3472 elements
14:08:01 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:01 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 06:00:00 (before)
2023-09-02 07:00:00 (after)
14:08:02 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:02 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:02 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:02 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:02 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:02 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:02 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 25x23x5) for time after (2023-09-02 07:00:00)
14:08:02 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 06:00:00) in space (linearNDFast)
14:08:02 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:02 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 07:00:00) in space (linearNDFast)
14:08:02 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1873 elements, expanding data 1
14:08:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:08:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1873 elements, expanding data 1
14:08:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:08:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1958 elements, expanding data 1
14:08:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 115 elements, expanding data 2
14:08:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
14:08:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1958 elements, expanding data 1
14:08:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 115 elements, expanding data 2
14:08:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
14:08:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1958 elements, expanding data 1
14:08:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 115 elements, expanding data 2
14:08:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
14:08:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1958 elements, expanding data 1
14:08:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 115 elements, expanding data 2
14:08:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
14:08:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1958 elements, expanding data 1
14:08:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 115 elements, expanding data 2
14:08:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
14:08:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2652 elements, expanding data 1
14:08:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1008 elements, expanding data 2
14:08:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2652 elements, expanding data 1
14:08:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1008 elements, expanding data 2
14:08:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2652 elements, expanding data 1
14:08:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1008 elements, expanding data 2
14:08:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2652 elements, expanding data 1
14:08:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1008 elements, expanding data 2
14:08:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2652 elements, expanding data 1
14:08:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1008 elements, expanding data 2
14:08:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1873 elements, expanding data 1
14:08:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:08:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1873 elements, expanding data 1
14:08:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:08:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1873 elements, expanding data 1
14:08:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:08:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1873 elements, expanding data 1
14:08:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:08:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1873 elements, expanding data 1
14:08:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:08:02 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 06:00:00, weight 0.39) and
after (2023-09-02 07:00:00, weight 0.61) in time
14:08:02 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.07059235787093 and -58.961811289776236 degrees.
14:08:02 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.07059235787093 and -58.961811289776236 degrees.
14:08:02 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:02 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:02 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:02 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:02 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:02 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:02 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.859807 (min) 1.22675 (max)
14:08:02 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.11352 (min) 0.755886 (max)
14:08:02 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -8.74704e-05 (min) 0.00070423 (max)
14:08:02 DEBUG opendrift.models.basemodel:1524: x_wind: -6.53181 (min) 6.94563 (max)
14:08:02 DEBUG opendrift.models.basemodel:1524: y_wind: -11.1417 (min) 3.42204 (max)
14:08:02 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:02 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:02 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:02 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:02 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:02 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:02 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:02 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.1928 (max)
14:08:02 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:02 DEBUG opendrift.models.basemodel:1527: 3472 active elements
14:08:02 DEBUG opendrift.models.basemodel:1538: 59.105231637997996 <- latitude -> 59.186907400869416
14:08:02 DEBUG opendrift.models.basemodel:1543: 10.929418215201098 <- longitude -> 11.03819927720673
14:08:02 DEBUG opendrift.models.basemodel:1548: -14.828081130981445 <- z -> 0.0
14:08:02 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:02 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:02 DEBUG opendrift.models.physics_methods:1050: min: 0.056607, mean: 3.304766, max: 9.965992
14:08:02 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.056607, mean: 3.304766, max: 9.965992
14:08:02 DEBUG opendrift.models.basemodel:813: 464 elements hit coastline, moving back to water
14:08:02 DEBUG opendrift.models.basemodel:836: Lifting 69 elements to seafloor.
14:08:02 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:02 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:02 DEBUG opendrift.models.physics_methods:828: Advecting 35 of 3472 elements above 0.100m with wind-sheared ocean current (0.010999 m/s - 0.120545 m/s)
14:08:02 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:02 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:02 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.12290169872005462
14:08:02 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:02 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:02 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:02 DEBUG opendrift.models.oceandrift:582: 376 elements penetrated seafloor, lifting up
14:08:02 DEBUG opendrift.models.oceandrift:600: 36 elements reached seafloor, set to bottom
14:08:02 DEBUG opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
14:08:02 DEBUG opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
14:08:02 DEBUG opendrift.models.oceandrift:582: 306 elements penetrated seafloor, lifting up
14:08:02 DEBUG opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
14:08:02 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
14:08:02 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
14:08:02 DEBUG opendrift.models.oceandrift:582: 275 elements penetrated seafloor, lifting up
14:08:02 DEBUG opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
14:08:02 DEBUG opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
14:08:02 DEBUG opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
14:08:02 DEBUG opendrift.models.oceandrift:582: 289 elements penetrated seafloor, lifting up
14:08:02 DEBUG opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
14:08:02 DEBUG opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
14:08:02 DEBUG opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
14:08:02 DEBUG opendrift.models.oceandrift:582: 272 elements penetrated seafloor, lifting up
14:08:02 DEBUG opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
14:08:02 DEBUG opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
14:08:02 DEBUG opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
14:08:02 DEBUG opendrift.models.oceandrift:582: 276 elements penetrated seafloor, lifting up
14:08:02 DEBUG opendrift.models.oceandrift:600: 44 elements reached seafloor, set to bottom
14:08:02 DEBUG opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
14:08:02 DEBUG opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
14:08:02 DEBUG opendrift.models.oceandrift:582: 263 elements penetrated seafloor, lifting up
14:08:02 DEBUG opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
14:08:02 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
14:08:02 DEBUG opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
14:08:02 DEBUG opendrift.models.oceandrift:582: 260 elements penetrated seafloor, lifting up
14:08:02 DEBUG opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
14:08:02 DEBUG opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
14:08:02 DEBUG opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
14:08:02 DEBUG opendrift.models.oceandrift:582: 240 elements penetrated seafloor, lifting up
14:08:02 DEBUG opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
14:08:02 DEBUG opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
14:08:02 DEBUG opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
14:08:02 DEBUG opendrift.models.oceandrift:582: 244 elements penetrated seafloor, lifting up
14:08:02 DEBUG opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
14:08:02 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
14:08:02 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
14:08:02 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:02 DEBUG opendrift.models.basemodel:2945: 3472 active elements (0 deactivated)
14:08:02 DEBUG opendrift.models.basemodel:1658: to be seeded: 6528, already seeded 3472
14:08:02 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:08:02 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:02 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:02 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:02 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:02 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:02 DEBUG opendrift.models.basemodel:1253: Data needed for 3507 elements
14:08:02 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:02 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 06:00:00 (before)
2023-09-02 07:00:00 (after)
14:08:02 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 06:00:00) in space (linearNDFast)
14:08:02 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:02 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:02 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:02 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:02 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:02 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:02 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.1181 (max)
14:08:02 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:02 DEBUG opendrift.models.basemodel:1527: 3507 active elements
14:08:02 DEBUG opendrift.models.basemodel:1538: 59.10531318723859 <- latitude -> 59.18655409780849
14:08:02 DEBUG opendrift.models.basemodel:1543: 10.927568278878258 <- longitude -> 11.037757553203972
14:08:02 DEBUG opendrift.models.basemodel:1548: -14.818081130981446 <- z -> 0.0
14:08:02 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:02 DEBUG opendrift.models.basemodel:836: Lifting 259 elements to seafloor.
14:08:02 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:02 INFO opendrift.models.basemodel:2882: 2023-09-02 06:46:21.121579 - step 101 of 216 - 3507 active elements (0 deactivated)
14:08:02 DEBUG opendrift.models.basemodel:2888: 6493 elements scheduled.
14:08:02 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:02 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:02 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:02 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:02 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:02 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:02 DEBUG opendrift.models.basemodel:1253: Data needed for 3507 elements
14:08:02 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:02 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:02 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:02 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:02 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:02 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:02 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:02 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:02 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:02 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:02 DEBUG opendrift.models.basemodel:1253: Data needed for 3507 elements
14:08:02 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:02 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 06:00:00 (before)
2023-09-02 07:00:00 (after)
14:08:03 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:03 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:03 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:03 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:03 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:03 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:03 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 25x23x5) for time after (2023-09-02 07:00:00)
14:08:03 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 06:00:00) in space (linearNDFast)
14:08:03 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:03 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 07:00:00) in space (linearNDFast)
14:08:03 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1904 elements, expanding data 1
14:08:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
14:08:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1904 elements, expanding data 1
14:08:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
14:08:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1986 elements, expanding data 1
14:08:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 125 elements, expanding data 2
14:08:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 3
14:08:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1986 elements, expanding data 1
14:08:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 125 elements, expanding data 2
14:08:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 3
14:08:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1986 elements, expanding data 1
14:08:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 125 elements, expanding data 2
14:08:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 3
14:08:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1986 elements, expanding data 1
14:08:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 125 elements, expanding data 2
14:08:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 3
14:08:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1986 elements, expanding data 1
14:08:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 125 elements, expanding data 2
14:08:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 3
14:08:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2657 elements, expanding data 1
14:08:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1023 elements, expanding data 2
14:08:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2657 elements, expanding data 1
14:08:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1023 elements, expanding data 2
14:08:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2657 elements, expanding data 1
14:08:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1023 elements, expanding data 2
14:08:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2657 elements, expanding data 1
14:08:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1023 elements, expanding data 2
14:08:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2657 elements, expanding data 1
14:08:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1023 elements, expanding data 2
14:08:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1904 elements, expanding data 1
14:08:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
14:08:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1904 elements, expanding data 1
14:08:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
14:08:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1904 elements, expanding data 1
14:08:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
14:08:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1904 elements, expanding data 1
14:08:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
14:08:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1904 elements, expanding data 1
14:08:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
14:08:03 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 06:00:00, weight 0.23) and
after (2023-09-02 07:00:00, weight 0.77) in time
14:08:03 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.07244228327375 and -58.96225300072771 degrees.
14:08:03 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.07244228327375 and -58.96225300072771 degrees.
14:08:03 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:03 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:03 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:03 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:03 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:03 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:03 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.73683 (min) 1.19923 (max)
14:08:03 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.27994 (min) 0.864974 (max)
14:08:03 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -5.44668e-05 (min) 0.000700187 (max)
14:08:03 DEBUG opendrift.models.basemodel:1524: x_wind: -6.75669 (min) 6.33692 (max)
14:08:03 DEBUG opendrift.models.basemodel:1524: y_wind: -10.4716 (min) 3.48388 (max)
14:08:03 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:03 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:03 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:03 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:03 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:03 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:03 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:03 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.1181 (max)
14:08:03 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:03 DEBUG opendrift.models.basemodel:1527: 3507 active elements
14:08:03 DEBUG opendrift.models.basemodel:1538: 59.10531318723859 <- latitude -> 59.18655409780849
14:08:03 DEBUG opendrift.models.basemodel:1543: 10.927568278878258 <- longitude -> 11.037757553203972
14:08:03 DEBUG opendrift.models.basemodel:1548: -14.818081130981446 <- z -> 0.0
14:08:03 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:03 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:03 DEBUG opendrift.models.physics_methods:1050: min: 0.021091, mean: 3.426480, max: 9.036851
14:08:03 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.021091, mean: 3.426480, max: 9.036851
14:08:03 DEBUG opendrift.models.basemodel:813: 480 elements hit coastline, moving back to water
14:08:03 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
14:08:03 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:03 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:03 DEBUG opendrift.models.physics_methods:828: Advecting 40 of 3507 elements above 0.100m with wind-sheared ocean current (0.000954 m/s - 0.186552 m/s)
14:08:03 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:03 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:03 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10105415497644424
14:08:03 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:03 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:03 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:03 DEBUG opendrift.models.oceandrift:582: 391 elements penetrated seafloor, lifting up
14:08:03 DEBUG opendrift.models.oceandrift:600: 40 elements reached seafloor, set to bottom
14:08:03 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
14:08:03 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
14:08:03 DEBUG opendrift.models.oceandrift:582: 305 elements penetrated seafloor, lifting up
14:08:03 DEBUG opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
14:08:03 DEBUG opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
14:08:03 DEBUG opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
14:08:03 DEBUG opendrift.models.oceandrift:582: 289 elements penetrated seafloor, lifting up
14:08:03 DEBUG opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
14:08:03 DEBUG opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
14:08:03 DEBUG opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
14:08:03 DEBUG opendrift.models.oceandrift:582: 293 elements penetrated seafloor, lifting up
14:08:03 DEBUG opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
14:08:03 DEBUG opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
14:08:03 DEBUG opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
14:08:03 DEBUG opendrift.models.oceandrift:582: 292 elements penetrated seafloor, lifting up
14:08:03 DEBUG opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
14:08:03 DEBUG opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
14:08:03 DEBUG opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
14:08:03 DEBUG opendrift.models.oceandrift:582: 302 elements penetrated seafloor, lifting up
14:08:03 DEBUG opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
14:08:03 DEBUG opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
14:08:03 DEBUG opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
14:08:03 DEBUG opendrift.models.oceandrift:582: 244 elements penetrated seafloor, lifting up
14:08:03 DEBUG opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
14:08:03 DEBUG opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
14:08:03 DEBUG opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
14:08:03 DEBUG opendrift.models.oceandrift:582: 241 elements penetrated seafloor, lifting up
14:08:03 DEBUG opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
14:08:03 DEBUG opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
14:08:03 DEBUG opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
14:08:03 DEBUG opendrift.models.oceandrift:582: 235 elements penetrated seafloor, lifting up
14:08:03 DEBUG opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
14:08:03 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
14:08:03 DEBUG opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
14:08:03 DEBUG opendrift.models.oceandrift:582: 259 elements penetrated seafloor, lifting up
14:08:03 DEBUG opendrift.models.oceandrift:600: 40 elements reached seafloor, set to bottom
14:08:03 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
14:08:03 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
14:08:03 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:03 DEBUG opendrift.models.basemodel:2945: 3507 active elements (0 deactivated)
14:08:03 DEBUG opendrift.models.basemodel:1658: to be seeded: 6493, already seeded 3507
14:08:03 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:08:03 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:03 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:03 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:03 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:03 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:03 DEBUG opendrift.models.basemodel:1253: Data needed for 3542 elements
14:08:03 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:03 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 06:00:00 (before)
2023-09-02 07:00:00 (after)
14:08:03 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 06:00:00) in space (linearNDFast)
14:08:03 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:03 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:03 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:03 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:03 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:03 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:03 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.2411 (max)
14:08:03 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:03 DEBUG opendrift.models.basemodel:1527: 3542 active elements
14:08:03 DEBUG opendrift.models.basemodel:1538: 59.10403646475388 <- latitude -> 59.187092155753675
14:08:03 DEBUG opendrift.models.basemodel:1543: 10.931676736203109 <- longitude -> 11.036671607466518
14:08:03 DEBUG opendrift.models.basemodel:1548: -13.992995262145996 <- z -> 0.0
14:08:03 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:03 DEBUG opendrift.models.basemodel:836: Lifting 249 elements to seafloor.
14:08:03 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:03 INFO opendrift.models.basemodel:2882: 2023-09-02 06:56:21.121579 - step 102 of 216 - 3542 active elements (0 deactivated)
14:08:03 DEBUG opendrift.models.basemodel:2888: 6458 elements scheduled.
14:08:03 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:03 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:03 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:03 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:03 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:03 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:03 DEBUG opendrift.models.basemodel:1253: Data needed for 3542 elements
14:08:03 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:03 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:03 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:03 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:03 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:03 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:03 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:03 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:03 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:03 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:03 DEBUG opendrift.models.basemodel:1253: Data needed for 3542 elements
14:08:03 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:03 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 06:00:00 (before)
2023-09-02 07:00:00 (after)
14:08:03 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:03 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:03 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:03 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:03 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:03 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:03 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 25x22x5) for time after (2023-09-02 07:00:00)
14:08:04 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 06:00:00) in space (linearNDFast)
14:08:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:04 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 07:00:00) in space (linearNDFast)
14:08:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1956 elements, expanding data 1
14:08:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:08:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1956 elements, expanding data 1
14:08:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:08:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2041 elements, expanding data 1
14:08:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 124 elements, expanding data 2
14:08:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
14:08:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2041 elements, expanding data 1
14:08:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 124 elements, expanding data 2
14:08:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
14:08:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2041 elements, expanding data 1
14:08:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 124 elements, expanding data 2
14:08:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
14:08:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2041 elements, expanding data 1
14:08:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 124 elements, expanding data 2
14:08:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
14:08:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2041 elements, expanding data 1
14:08:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 124 elements, expanding data 2
14:08:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
14:08:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2702 elements, expanding data 1
14:08:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1049 elements, expanding data 2
14:08:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2702 elements, expanding data 1
14:08:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1049 elements, expanding data 2
14:08:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2702 elements, expanding data 1
14:08:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1049 elements, expanding data 2
14:08:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2702 elements, expanding data 1
14:08:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1049 elements, expanding data 2
14:08:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2702 elements, expanding data 1
14:08:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1049 elements, expanding data 2
14:08:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1956 elements, expanding data 1
14:08:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:08:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1956 elements, expanding data 1
14:08:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:08:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1956 elements, expanding data 1
14:08:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:08:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1956 elements, expanding data 1
14:08:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:08:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1956 elements, expanding data 1
14:08:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:08:04 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 06:00:00, weight 0.06) and
after (2023-09-02 07:00:00, weight 0.94) in time
14:08:04 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.06833382943669 and -58.96333895373609 degrees.
14:08:04 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.06833382943669 and -58.96333895373609 degrees.
14:08:04 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:04 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:04 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:04 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:04 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:04 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:04 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.748239 (min) 1.28886 (max)
14:08:04 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.21431 (min) 0.715506 (max)
14:08:04 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -6.71148e-05 (min) 0.000689765 (max)
14:08:04 DEBUG opendrift.models.basemodel:1524: x_wind: -6.90081 (min) 6.83881 (max)
14:08:04 DEBUG opendrift.models.basemodel:1524: y_wind: -10.5155 (min) 3.56548 (max)
14:08:04 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:04 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:04 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:04 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:04 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:04 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:04 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:04 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.2411 (max)
14:08:04 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:04 DEBUG opendrift.models.basemodel:1527: 3542 active elements
14:08:04 DEBUG opendrift.models.basemodel:1538: 59.10403646475388 <- latitude -> 59.187092155753675
14:08:04 DEBUG opendrift.models.basemodel:1543: 10.931676736203109 <- longitude -> 11.036671607466518
14:08:04 DEBUG opendrift.models.basemodel:1548: -13.930387496948242 <- z -> 0.0
14:08:04 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:04 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:04 DEBUG opendrift.models.physics_methods:1050: min: 0.090436, mean: 3.479815, max: 9.279849
14:08:04 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.090436, mean: 3.479815, max: 9.279849
14:08:04 DEBUG opendrift.models.basemodel:813: 491 elements hit coastline, moving back to water
14:08:04 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:08:04 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:04 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:04 DEBUG opendrift.models.physics_methods:828: Advecting 41 of 3542 elements above 0.100m with wind-sheared ocean current (0.002992 m/s - 0.136984 m/s)
14:08:04 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:04 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:04 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10656163370521544
14:08:04 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:04 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:04 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:04 DEBUG opendrift.models.oceandrift:582: 423 elements penetrated seafloor, lifting up
14:08:04 DEBUG opendrift.models.oceandrift:600: 52 elements reached seafloor, set to bottom
14:08:04 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
14:08:04 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
14:08:04 DEBUG opendrift.models.oceandrift:582: 332 elements penetrated seafloor, lifting up
14:08:04 DEBUG opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
14:08:04 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
14:08:04 DEBUG opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
14:08:04 DEBUG opendrift.models.oceandrift:582: 298 elements penetrated seafloor, lifting up
14:08:04 DEBUG opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
14:08:04 DEBUG opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
14:08:04 DEBUG opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
14:08:04 DEBUG opendrift.models.oceandrift:582: 313 elements penetrated seafloor, lifting up
14:08:04 DEBUG opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
14:08:04 DEBUG opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
14:08:04 DEBUG opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
14:08:04 DEBUG opendrift.models.oceandrift:582: 292 elements penetrated seafloor, lifting up
14:08:04 DEBUG opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
14:08:04 DEBUG opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
14:08:04 DEBUG opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
14:08:04 DEBUG opendrift.models.oceandrift:582: 276 elements penetrated seafloor, lifting up
14:08:04 DEBUG opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
14:08:04 DEBUG opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
14:08:04 DEBUG opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
14:08:04 DEBUG opendrift.models.oceandrift:582: 266 elements penetrated seafloor, lifting up
14:08:04 DEBUG opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
14:08:04 DEBUG opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
14:08:04 DEBUG opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
14:08:04 DEBUG opendrift.models.oceandrift:582: 270 elements penetrated seafloor, lifting up
14:08:04 DEBUG opendrift.models.oceandrift:600: 42 elements reached seafloor, set to bottom
14:08:04 DEBUG opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
14:08:04 DEBUG opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
14:08:04 DEBUG opendrift.models.oceandrift:582: 257 elements penetrated seafloor, lifting up
14:08:04 DEBUG opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
14:08:04 DEBUG opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
14:08:04 DEBUG opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
14:08:04 DEBUG opendrift.models.oceandrift:582: 260 elements penetrated seafloor, lifting up
14:08:04 DEBUG opendrift.models.oceandrift:600: 36 elements reached seafloor, set to bottom
14:08:04 DEBUG opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
14:08:04 DEBUG opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
14:08:04 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:04 DEBUG opendrift.models.basemodel:2945: 3542 active elements (0 deactivated)
14:08:04 DEBUG opendrift.models.basemodel:1658: to be seeded: 6458, already seeded 3542
14:08:04 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:08:04 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:04 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:04 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:04 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:04 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:04 DEBUG opendrift.models.basemodel:1253: Data needed for 3577 elements
14:08:04 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:04 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 07:00:00 (before)
2023-09-02 08:00:00 (after)
14:08:04 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 07:00:00) in space (linearNDFast)
14:08:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:04 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:04 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:04 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:04 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:04 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:04 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3214 (max)
14:08:04 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:04 DEBUG opendrift.models.basemodel:1527: 3577 active elements
14:08:04 DEBUG opendrift.models.basemodel:1538: 59.10207169056332 <- latitude -> 59.18752849515905
14:08:04 DEBUG opendrift.models.basemodel:1543: 10.932459566595504 <- longitude -> 11.037168400863013
14:08:04 DEBUG opendrift.models.basemodel:1548: -14.357449760437012 <- z -> 0.0
14:08:04 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:04 DEBUG opendrift.models.basemodel:836: Lifting 260 elements to seafloor.
14:08:04 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:04 INFO opendrift.models.basemodel:2882: 2023-09-02 07:06:21.121579 - step 103 of 216 - 3577 active elements (0 deactivated)
14:08:04 DEBUG opendrift.models.basemodel:2888: 6423 elements scheduled.
14:08:04 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:04 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:04 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:04 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:04 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:04 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:04 DEBUG opendrift.models.basemodel:1253: Data needed for 3577 elements
14:08:04 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:04 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:04 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:04 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:04 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:04 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:04 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:04 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:04 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:04 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:04 DEBUG opendrift.models.basemodel:1253: Data needed for 3577 elements
14:08:04 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:04 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 07:00:00 (before)
2023-09-02 08:00:00 (after)
14:08:05 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:05 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:05 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:05 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:05 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:05 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:05 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 25x23x5) for time after (2023-09-02 08:00:00)
14:08:05 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 07:00:00) in space (linearNDFast)
14:08:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:05 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 08:00:00) in space (linearNDFast)
14:08:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1981 elements, expanding data 1
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1981 elements, expanding data 1
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2064 elements, expanding data 1
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 2
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2064 elements, expanding data 1
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 2
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2064 elements, expanding data 1
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 2
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2064 elements, expanding data 1
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 2
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2064 elements, expanding data 1
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 2
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2755 elements, expanding data 1
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1057 elements, expanding data 2
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2755 elements, expanding data 1
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1057 elements, expanding data 2
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2755 elements, expanding data 1
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1057 elements, expanding data 2
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2755 elements, expanding data 1
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1057 elements, expanding data 2
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2755 elements, expanding data 1
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1057 elements, expanding data 2
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1981 elements, expanding data 1
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1981 elements, expanding data 1
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1981 elements, expanding data 1
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1981 elements, expanding data 1
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1981 elements, expanding data 1
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
14:08:05 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 07:00:00, weight 0.89) and
after (2023-09-02 08:00:00, weight 0.11) in time
14:08:05 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.06755100208586 and -58.962842152914774 degrees.
14:08:05 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.06755100208586 and -58.962842152914774 degrees.
14:08:05 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:05 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:05 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:05 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:05 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:05 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:05 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.956382 (min) 1.09265 (max)
14:08:05 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.968826 (min) 0.828924 (max)
14:08:05 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -5.28796e-05 (min) 0.000597619 (max)
14:08:05 DEBUG opendrift.models.basemodel:1524: x_wind: -7.50901 (min) 5.88216 (max)
14:08:05 DEBUG opendrift.models.basemodel:1524: y_wind: -11.2872 (min) 3.62059 (max)
14:08:05 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:05 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:05 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:05 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:05 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:05 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:05 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:05 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3214 (max)
14:08:05 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:05 DEBUG opendrift.models.basemodel:1527: 3577 active elements
14:08:05 DEBUG opendrift.models.basemodel:1538: 59.10207169056332 <- latitude -> 59.18752849515905
14:08:05 DEBUG opendrift.models.basemodel:1543: 10.932459566595504 <- longitude -> 11.037168400863013
14:08:05 DEBUG opendrift.models.basemodel:1548: -14.357449760437012 <- z -> 0.0
14:08:05 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:05 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:05 DEBUG opendrift.models.physics_methods:1050: min: 0.050053, mean: 3.508874, max: 9.814891
14:08:05 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.050053, mean: 3.508874, max: 9.814891
14:08:05 DEBUG opendrift.models.basemodel:813: 504 elements hit coastline, moving back to water
14:08:05 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:08:05 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:05 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:05 DEBUG opendrift.models.physics_methods:828: Advecting 39 of 3577 elements above 0.100m with wind-sheared ocean current (0.009252 m/s - 0.160044 m/s)
14:08:05 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:05 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:05 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.1192032954021263
14:08:05 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:05 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:05 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:05 DEBUG opendrift.models.oceandrift:582: 401 elements penetrated seafloor, lifting up
14:08:05 DEBUG opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
14:08:05 DEBUG opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
14:08:05 DEBUG opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
14:08:05 DEBUG opendrift.models.oceandrift:582: 323 elements penetrated seafloor, lifting up
14:08:05 DEBUG opendrift.models.oceandrift:600: 54 elements reached seafloor, set to bottom
14:08:05 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
14:08:05 DEBUG opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
14:08:05 DEBUG opendrift.models.oceandrift:582: 281 elements penetrated seafloor, lifting up
14:08:05 DEBUG opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
14:08:05 DEBUG opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
14:08:05 DEBUG opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
14:08:05 DEBUG opendrift.models.oceandrift:582: 252 elements penetrated seafloor, lifting up
14:08:05 DEBUG opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
14:08:05 DEBUG opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
14:08:05 DEBUG opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
14:08:05 DEBUG opendrift.models.oceandrift:582: 297 elements penetrated seafloor, lifting up
14:08:05 DEBUG opendrift.models.oceandrift:600: 36 elements reached seafloor, set to bottom
14:08:05 DEBUG opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
14:08:05 DEBUG opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
14:08:05 DEBUG opendrift.models.oceandrift:582: 258 elements penetrated seafloor, lifting up
14:08:05 DEBUG opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
14:08:05 DEBUG opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
14:08:05 DEBUG opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
14:08:05 DEBUG opendrift.models.oceandrift:582: 270 elements penetrated seafloor, lifting up
14:08:05 DEBUG opendrift.models.oceandrift:600: 36 elements reached seafloor, set to bottom
14:08:05 DEBUG opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
14:08:05 DEBUG opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
14:08:05 DEBUG opendrift.models.oceandrift:582: 261 elements penetrated seafloor, lifting up
14:08:05 DEBUG opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
14:08:05 DEBUG opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
14:08:05 DEBUG opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
14:08:05 DEBUG opendrift.models.oceandrift:582: 269 elements penetrated seafloor, lifting up
14:08:05 DEBUG opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
14:08:05 DEBUG opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
14:08:05 DEBUG opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
14:08:05 DEBUG opendrift.models.oceandrift:582: 242 elements penetrated seafloor, lifting up
14:08:05 DEBUG opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
14:08:05 DEBUG opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
14:08:05 DEBUG opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
14:08:05 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:05 DEBUG opendrift.models.basemodel:2945: 3577 active elements (0 deactivated)
14:08:05 DEBUG opendrift.models.basemodel:1658: to be seeded: 6423, already seeded 3577
14:08:05 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:08:05 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:05 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:05 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:05 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:05 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:05 DEBUG opendrift.models.basemodel:1253: Data needed for 3611 elements
14:08:05 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:05 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 07:00:00 (before)
2023-09-02 08:00:00 (after)
14:08:05 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 07:00:00) in space (linearNDFast)
14:08:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:05 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:05 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:05 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:05 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:05 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:05 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4138 (max)
14:08:05 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:05 DEBUG opendrift.models.basemodel:1527: 3611 active elements
14:08:05 DEBUG opendrift.models.basemodel:1538: 59.10073031546699 <- latitude -> 59.188303086265584
14:08:05 DEBUG opendrift.models.basemodel:1543: 10.930777436852727 <- longitude -> 11.037168400863012
14:08:05 DEBUG opendrift.models.basemodel:1548: -14.514344215393066 <- z -> 0.0
14:08:05 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:05 DEBUG opendrift.models.basemodel:836: Lifting 235 elements to seafloor.
14:08:05 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:05 INFO opendrift.models.basemodel:2882: 2023-09-02 07:16:21.121579 - step 104 of 216 - 3611 active elements (0 deactivated)
14:08:05 DEBUG opendrift.models.basemodel:2888: 6389 elements scheduled.
14:08:05 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:05 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:05 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:05 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:05 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:05 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:05 DEBUG opendrift.models.basemodel:1253: Data needed for 3611 elements
14:08:05 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:05 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:05 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:05 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:05 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:05 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:05 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:05 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:05 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:05 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:05 DEBUG opendrift.models.basemodel:1253: Data needed for 3611 elements
14:08:05 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:05 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 07:00:00 (before)
2023-09-02 08:00:00 (after)
14:08:05 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:05 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:05 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:05 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:05 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:05 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:05 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x23x5) for time after (2023-09-02 08:00:00)
14:08:05 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 07:00:00) in space (linearNDFast)
14:08:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:05 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 08:00:00) in space (linearNDFast)
14:08:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2010 elements, expanding data 1
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 2
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2010 elements, expanding data 1
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 2
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2099 elements, expanding data 1
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 2
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2099 elements, expanding data 1
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 2
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2099 elements, expanding data 1
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 2
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2099 elements, expanding data 1
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 2
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2099 elements, expanding data 1
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 2
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2786 elements, expanding data 1
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1083 elements, expanding data 2
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2786 elements, expanding data 1
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1083 elements, expanding data 2
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2786 elements, expanding data 1
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1083 elements, expanding data 2
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2786 elements, expanding data 1
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1083 elements, expanding data 2
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2786 elements, expanding data 1
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1083 elements, expanding data 2
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2010 elements, expanding data 1
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 2
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2010 elements, expanding data 1
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 2
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2010 elements, expanding data 1
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 2
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2010 elements, expanding data 1
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 2
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2010 elements, expanding data 1
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 2
14:08:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:05 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 07:00:00, weight 0.73) and
after (2023-09-02 08:00:00, weight 0.27) in time
14:08:05 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.06923313404563 and -58.962842152914774 degrees.
14:08:06 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.06923313404563 and -58.962842152914774 degrees.
14:08:06 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:06 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:06 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:06 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:06 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:06 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:06 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.80064 (min) 1.24441 (max)
14:08:06 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.05719 (min) 0.833356 (max)
14:08:06 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -4.3973e-05 (min) 0.000680747 (max)
14:08:06 DEBUG opendrift.models.basemodel:1524: x_wind: -8.29461 (min) 6.244 (max)
14:08:06 DEBUG opendrift.models.basemodel:1524: y_wind: -10.7661 (min) 4.08663 (max)
14:08:06 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:06 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:06 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:06 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:06 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:06 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:06 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:06 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4138 (max)
14:08:06 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:06 DEBUG opendrift.models.basemodel:1527: 3611 active elements
14:08:06 DEBUG opendrift.models.basemodel:1538: 59.10073031546699 <- latitude -> 59.188303086265584
14:08:06 DEBUG opendrift.models.basemodel:1543: 10.930777436852727 <- longitude -> 11.037168400863012
14:08:06 DEBUG opendrift.models.basemodel:1548: -14.514344215393066 <- z -> 0.0
14:08:06 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:06 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:06 DEBUG opendrift.models.physics_methods:1050: min: 0.136038, mean: 3.565025, max: 9.685573
14:08:06 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.136038, mean: 3.565025, max: 9.685573
14:08:06 DEBUG opendrift.models.basemodel:813: 459 elements hit coastline, moving back to water
14:08:06 DEBUG opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
14:08:06 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:06 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:06 DEBUG opendrift.models.physics_methods:828: Advecting 35 of 3611 elements above 0.100m with wind-sheared ocean current (0.007553 m/s - 0.145708 m/s)
14:08:06 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:06 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:06 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.11608291132839202
14:08:06 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:06 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:06 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:06 DEBUG opendrift.models.oceandrift:582: 399 elements penetrated seafloor, lifting up
14:08:06 DEBUG opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
14:08:06 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
14:08:06 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
14:08:06 DEBUG opendrift.models.oceandrift:582: 337 elements penetrated seafloor, lifting up
14:08:06 DEBUG opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
14:08:06 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
14:08:06 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
14:08:06 DEBUG opendrift.models.oceandrift:582: 326 elements penetrated seafloor, lifting up
14:08:06 DEBUG opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
14:08:06 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
14:08:06 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
14:08:06 DEBUG opendrift.models.oceandrift:582: 275 elements penetrated seafloor, lifting up
14:08:06 DEBUG opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
14:08:06 DEBUG opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
14:08:06 DEBUG opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
14:08:06 DEBUG opendrift.models.oceandrift:582: 282 elements penetrated seafloor, lifting up
14:08:06 DEBUG opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
14:08:06 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
14:08:06 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
14:08:06 DEBUG opendrift.models.oceandrift:582: 286 elements penetrated seafloor, lifting up
14:08:06 DEBUG opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
14:08:06 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
14:08:06 DEBUG opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
14:08:06 DEBUG opendrift.models.oceandrift:582: 272 elements penetrated seafloor, lifting up
14:08:06 DEBUG opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
14:08:06 DEBUG opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
14:08:06 DEBUG opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
14:08:06 DEBUG opendrift.models.oceandrift:582: 254 elements penetrated seafloor, lifting up
14:08:06 DEBUG opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
14:08:06 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
14:08:06 DEBUG opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
14:08:06 DEBUG opendrift.models.oceandrift:582: 269 elements penetrated seafloor, lifting up
14:08:06 DEBUG opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
14:08:06 DEBUG opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
14:08:06 DEBUG opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
14:08:06 DEBUG opendrift.models.oceandrift:582: 272 elements penetrated seafloor, lifting up
14:08:06 DEBUG opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
14:08:06 DEBUG opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
14:08:06 DEBUG opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
14:08:06 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:06 DEBUG opendrift.models.basemodel:2945: 3611 active elements (0 deactivated)
14:08:06 DEBUG opendrift.models.basemodel:1658: to be seeded: 6389, already seeded 3611
14:08:06 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:08:06 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:06 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:06 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:06 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:06 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:06 DEBUG opendrift.models.basemodel:1253: Data needed for 3646 elements
14:08:06 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:06 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 07:00:00 (before)
2023-09-02 08:00:00 (after)
14:08:06 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 07:00:00) in space (linearNDFast)
14:08:06 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:06 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:06 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:06 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:06 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:06 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:06 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4276 (max)
14:08:06 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:06 DEBUG opendrift.models.basemodel:1527: 3646 active elements
14:08:06 DEBUG opendrift.models.basemodel:1538: 59.10038246599895 <- latitude -> 59.18861093945768
14:08:06 DEBUG opendrift.models.basemodel:1543: 10.933517396864305 <- longitude -> 11.039185628078686
14:08:06 DEBUG opendrift.models.basemodel:1548: -14.504344215393067 <- z -> 0.0
14:08:06 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:06 DEBUG opendrift.models.basemodel:836: Lifting 257 elements to seafloor.
14:08:06 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:06 INFO opendrift.models.basemodel:2882: 2023-09-02 07:26:21.121579 - step 105 of 216 - 3646 active elements (0 deactivated)
14:08:06 DEBUG opendrift.models.basemodel:2888: 6354 elements scheduled.
14:08:06 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:06 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:06 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:06 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:06 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:06 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:06 DEBUG opendrift.models.basemodel:1253: Data needed for 3646 elements
14:08:06 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:06 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:06 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:06 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:06 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:06 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:06 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:06 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:06 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:06 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:06 DEBUG opendrift.models.basemodel:1253: Data needed for 3646 elements
14:08:06 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:06 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 07:00:00 (before)
2023-09-02 08:00:00 (after)
14:08:06 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:06 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:06 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:06 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:06 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:06 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:06 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 25x23x5) for time after (2023-09-02 08:00:00)
14:08:06 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 07:00:00) in space (linearNDFast)
14:08:06 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:06 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 08:00:00) in space (linearNDFast)
14:08:06 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2038 elements, expanding data 1
14:08:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
14:08:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2038 elements, expanding data 1
14:08:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
14:08:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2129 elements, expanding data 1
14:08:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 145 elements, expanding data 2
14:08:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
14:08:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2129 elements, expanding data 1
14:08:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 145 elements, expanding data 2
14:08:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
14:08:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2129 elements, expanding data 1
14:08:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 145 elements, expanding data 2
14:08:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
14:08:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2129 elements, expanding data 1
14:08:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 145 elements, expanding data 2
14:08:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
14:08:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2129 elements, expanding data 1
14:08:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 145 elements, expanding data 2
14:08:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
14:08:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2825 elements, expanding data 1
14:08:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1101 elements, expanding data 2
14:08:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2825 elements, expanding data 1
14:08:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1101 elements, expanding data 2
14:08:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2825 elements, expanding data 1
14:08:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1101 elements, expanding data 2
14:08:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2825 elements, expanding data 1
14:08:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1101 elements, expanding data 2
14:08:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2825 elements, expanding data 1
14:08:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1101 elements, expanding data 2
14:08:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2038 elements, expanding data 1
14:08:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
14:08:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2038 elements, expanding data 1
14:08:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
14:08:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2038 elements, expanding data 1
14:08:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
14:08:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2038 elements, expanding data 1
14:08:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
14:08:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2038 elements, expanding data 1
14:08:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
14:08:06 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 07:00:00, weight 0.56) and
after (2023-09-02 08:00:00, weight 0.44) in time
14:08:06 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.06649317793201 and -58.960824934961956 degrees.
14:08:06 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.06649317793201 and -58.960824934961956 degrees.
14:08:06 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:06 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:06 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:06 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:06 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:06 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:06 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.758781 (min) 1.10715 (max)
14:08:06 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.03701 (min) 0.799095 (max)
14:08:06 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -5.94924e-05 (min) 0.000705176 (max)
14:08:06 DEBUG opendrift.models.basemodel:1524: x_wind: -7.91607 (min) 6.75749 (max)
14:08:06 DEBUG opendrift.models.basemodel:1524: y_wind: -10.1823 (min) 3.32265 (max)
14:08:06 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:06 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:06 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:06 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:06 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:06 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:06 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:06 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4276 (max)
14:08:06 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:06 DEBUG opendrift.models.basemodel:1527: 3646 active elements
14:08:06 DEBUG opendrift.models.basemodel:1538: 59.10038246599895 <- latitude -> 59.18861093945768
14:08:06 DEBUG opendrift.models.basemodel:1543: 10.933517396864305 <- longitude -> 11.039185628078686
14:08:06 DEBUG opendrift.models.basemodel:1548: -14.504344215393067 <- z -> 0.0
14:08:06 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:06 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:06 DEBUG opendrift.models.physics_methods:1050: min: 0.081529, mean: 3.536884, max: 9.553833
14:08:06 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.081529, mean: 3.536884, max: 9.553833
14:08:06 DEBUG opendrift.models.basemodel:813: 522 elements hit coastline, moving back to water
14:08:06 DEBUG opendrift.models.basemodel:836: Lifting 95 elements to seafloor.
14:08:06 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:06 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:06 DEBUG opendrift.models.physics_methods:828: Advecting 36 of 3646 elements above 0.100m with wind-sheared ocean current (0.000469 m/s - 0.148883 m/s)
14:08:06 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:06 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:06 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.11294662859161377
14:08:06 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:06 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:06 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:06 DEBUG opendrift.models.oceandrift:582: 457 elements penetrated seafloor, lifting up
14:08:06 DEBUG opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
14:08:06 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
14:08:06 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
14:08:06 DEBUG opendrift.models.oceandrift:582: 313 elements penetrated seafloor, lifting up
14:08:06 DEBUG opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
14:08:06 DEBUG opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
14:08:06 DEBUG opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
14:08:06 DEBUG opendrift.models.oceandrift:582: 313 elements penetrated seafloor, lifting up
14:08:06 DEBUG opendrift.models.oceandrift:600: 44 elements reached seafloor, set to bottom
14:08:06 DEBUG opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
14:08:06 DEBUG opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
14:08:06 DEBUG opendrift.models.oceandrift:582: 334 elements penetrated seafloor, lifting up
14:08:06 DEBUG opendrift.models.oceandrift:600: 40 elements reached seafloor, set to bottom
14:08:06 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
14:08:06 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
14:08:06 DEBUG opendrift.models.oceandrift:582: 287 elements penetrated seafloor, lifting up
14:08:06 DEBUG opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
14:08:06 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
14:08:06 DEBUG opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
14:08:06 DEBUG opendrift.models.oceandrift:582: 284 elements penetrated seafloor, lifting up
14:08:06 DEBUG opendrift.models.oceandrift:600: 36 elements reached seafloor, set to bottom
14:08:06 DEBUG opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
14:08:06 DEBUG opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
14:08:06 DEBUG opendrift.models.oceandrift:582: 293 elements penetrated seafloor, lifting up
14:08:06 DEBUG opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
14:08:06 DEBUG opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
14:08:06 DEBUG opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
14:08:06 DEBUG opendrift.models.oceandrift:582: 255 elements penetrated seafloor, lifting up
14:08:06 DEBUG opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
14:08:06 DEBUG opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
14:08:06 DEBUG opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
14:08:06 DEBUG opendrift.models.oceandrift:582: 261 elements penetrated seafloor, lifting up
14:08:06 DEBUG opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
14:08:06 DEBUG opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
14:08:06 DEBUG opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
14:08:06 DEBUG opendrift.models.oceandrift:582: 275 elements penetrated seafloor, lifting up
14:08:06 DEBUG opendrift.models.oceandrift:600: 29 elements reached seafloor, set to bottom
14:08:06 DEBUG opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
14:08:06 DEBUG opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
14:08:06 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:06 DEBUG opendrift.models.basemodel:2945: 3646 active elements (0 deactivated)
14:08:06 DEBUG opendrift.models.basemodel:1658: to be seeded: 6354, already seeded 3646
14:08:06 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:08:06 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:06 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:06 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:06 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:06 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:06 DEBUG opendrift.models.basemodel:1253: Data needed for 3681 elements
14:08:06 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:06 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 07:00:00 (before)
2023-09-02 08:00:00 (after)
14:08:06 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 07:00:00) in space (linearNDFast)
14:08:06 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:06 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:06 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:06 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:06 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:06 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:06 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3801 (max)
14:08:06 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:06 DEBUG opendrift.models.basemodel:1527: 3681 active elements
14:08:06 DEBUG opendrift.models.basemodel:1538: 59.10151618122843 <- latitude -> 59.188770055770874
14:08:06 DEBUG opendrift.models.basemodel:1543: 10.933774583959494 <- longitude -> 11.03993478036546
14:08:06 DEBUG opendrift.models.basemodel:1548: -14.156676171946447 <- z -> 0.0
14:08:06 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:06 DEBUG opendrift.models.basemodel:836: Lifting 271 elements to seafloor.
14:08:06 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:06 INFO opendrift.models.basemodel:2882: 2023-09-02 07:36:21.121579 - step 106 of 216 - 3681 active elements (0 deactivated)
14:08:06 DEBUG opendrift.models.basemodel:2888: 6319 elements scheduled.
14:08:06 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:06 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:06 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:06 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:06 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:06 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:06 DEBUG opendrift.models.basemodel:1253: Data needed for 3681 elements
14:08:06 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:06 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:06 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:06 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:06 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:06 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:06 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:06 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:06 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:06 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:06 DEBUG opendrift.models.basemodel:1253: Data needed for 3681 elements
14:08:06 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:06 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 07:00:00 (before)
2023-09-02 08:00:00 (after)
14:08:07 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:07 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:07 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:07 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:07 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:07 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:07 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 25x23x5) for time after (2023-09-02 08:00:00)
14:08:07 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 07:00:00) in space (linearNDFast)
14:08:07 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:07 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 08:00:00) in space (linearNDFast)
14:08:07 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2055 elements, expanding data 1
14:08:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 2
14:08:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2055 elements, expanding data 1
14:08:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 2
14:08:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2140 elements, expanding data 1
14:08:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 152 elements, expanding data 2
14:08:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
14:08:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2140 elements, expanding data 1
14:08:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 152 elements, expanding data 2
14:08:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
14:08:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2140 elements, expanding data 1
14:08:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 152 elements, expanding data 2
14:08:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
14:08:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2140 elements, expanding data 1
14:08:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 152 elements, expanding data 2
14:08:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
14:08:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2140 elements, expanding data 1
14:08:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 152 elements, expanding data 2
14:08:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
14:08:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2867 elements, expanding data 1
14:08:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1109 elements, expanding data 2
14:08:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2867 elements, expanding data 1
14:08:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1109 elements, expanding data 2
14:08:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2867 elements, expanding data 1
14:08:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1109 elements, expanding data 2
14:08:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2867 elements, expanding data 1
14:08:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1109 elements, expanding data 2
14:08:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2867 elements, expanding data 1
14:08:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1109 elements, expanding data 2
14:08:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2055 elements, expanding data 1
14:08:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 2
14:08:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2055 elements, expanding data 1
14:08:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 2
14:08:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2055 elements, expanding data 1
14:08:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 2
14:08:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2055 elements, expanding data 1
14:08:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 2
14:08:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2055 elements, expanding data 1
14:08:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 2
14:08:07 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 07:00:00, weight 0.39) and
after (2023-09-02 08:00:00, weight 0.61) in time
14:08:07 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.06623598438334 and -58.96007577556012 degrees.
14:08:07 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.06623598438334 and -58.96007577556012 degrees.
14:08:07 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:07 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:07 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:07 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:07 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:07 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:07 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.794763 (min) 1.09464 (max)
14:08:07 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.933265 (min) 0.712646 (max)
14:08:07 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -5.45666e-05 (min) 0.00072641 (max)
14:08:07 DEBUG opendrift.models.basemodel:1524: x_wind: -6.81912 (min) 7.35558 (max)
14:08:07 DEBUG opendrift.models.basemodel:1524: y_wind: -11.7518 (min) 3.75618 (max)
14:08:07 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:07 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:07 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:07 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:07 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:07 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:07 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:07 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3801 (max)
14:08:07 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:07 DEBUG opendrift.models.basemodel:1527: 3681 active elements
14:08:07 DEBUG opendrift.models.basemodel:1538: 59.10151618122843 <- latitude -> 59.188770055770874
14:08:07 DEBUG opendrift.models.basemodel:1543: 10.933774583959494 <- longitude -> 11.03993478036546
14:08:07 DEBUG opendrift.models.basemodel:1548: -14.156676171946447 <- z -> 0.0
14:08:07 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:07 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:07 DEBUG opendrift.models.physics_methods:1050: min: 0.057281, mean: 3.561252, max: 10.460879
14:08:07 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.057281, mean: 3.561252, max: 10.460879
14:08:07 DEBUG opendrift.models.basemodel:813: 506 elements hit coastline, moving back to water
14:08:07 DEBUG opendrift.models.basemodel:836: Lifting 101 elements to seafloor.
14:08:07 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:07 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:07 DEBUG opendrift.models.physics_methods:828: Advecting 38 of 3681 elements above 0.100m with wind-sheared ocean current (0.000104 m/s - 0.191661 m/s)
14:08:07 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:07 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:07 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.13541031835659026
14:08:07 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:07 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:07 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:07 DEBUG opendrift.models.oceandrift:582: 400 elements penetrated seafloor, lifting up
14:08:07 DEBUG opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
14:08:07 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
14:08:07 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
14:08:07 DEBUG opendrift.models.oceandrift:582: 344 elements penetrated seafloor, lifting up
14:08:07 DEBUG opendrift.models.oceandrift:600: 42 elements reached seafloor, set to bottom
14:08:07 DEBUG opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
14:08:07 DEBUG opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
14:08:07 DEBUG opendrift.models.oceandrift:582: 334 elements penetrated seafloor, lifting up
14:08:07 DEBUG opendrift.models.oceandrift:600: 36 elements reached seafloor, set to bottom
14:08:07 DEBUG opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
14:08:07 DEBUG opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
14:08:07 DEBUG opendrift.models.oceandrift:582: 302 elements penetrated seafloor, lifting up
14:08:07 DEBUG opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
14:08:07 DEBUG opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
14:08:07 DEBUG opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
14:08:07 DEBUG opendrift.models.oceandrift:582: 294 elements penetrated seafloor, lifting up
14:08:07 DEBUG opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
14:08:07 DEBUG opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
14:08:07 DEBUG opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
14:08:07 DEBUG opendrift.models.oceandrift:582: 261 elements penetrated seafloor, lifting up
14:08:07 DEBUG opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
14:08:07 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
14:08:07 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
14:08:07 DEBUG opendrift.models.oceandrift:582: 264 elements penetrated seafloor, lifting up
14:08:07 DEBUG opendrift.models.oceandrift:600: 40 elements reached seafloor, set to bottom
14:08:07 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
14:08:07 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
14:08:07 DEBUG opendrift.models.oceandrift:582: 270 elements penetrated seafloor, lifting up
14:08:07 DEBUG opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
14:08:07 DEBUG opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
14:08:07 DEBUG opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
14:08:07 DEBUG opendrift.models.oceandrift:582: 255 elements penetrated seafloor, lifting up
14:08:07 DEBUG opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
14:08:07 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
14:08:07 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
14:08:07 DEBUG opendrift.models.oceandrift:582: 242 elements penetrated seafloor, lifting up
14:08:07 DEBUG opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
14:08:07 DEBUG opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
14:08:07 DEBUG opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
14:08:07 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:07 DEBUG opendrift.models.basemodel:2945: 3681 active elements (0 deactivated)
14:08:07 DEBUG opendrift.models.basemodel:1658: to be seeded: 6319, already seeded 3681
14:08:07 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:08:07 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:07 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:07 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:07 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:07 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:07 DEBUG opendrift.models.basemodel:1253: Data needed for 3715 elements
14:08:07 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:07 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 07:00:00 (before)
2023-09-02 08:00:00 (after)
14:08:07 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 07:00:00) in space (linearNDFast)
14:08:07 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:07 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:07 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:07 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:07 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:07 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:07 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3781 (max)
14:08:07 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:07 DEBUG opendrift.models.basemodel:1527: 3715 active elements
14:08:07 DEBUG opendrift.models.basemodel:1538: 59.101254485108136 <- latitude -> 59.18792921069293
14:08:07 DEBUG opendrift.models.basemodel:1543: 10.931613216533842 <- longitude -> 11.04053299565962
14:08:07 DEBUG opendrift.models.basemodel:1548: -14.053201675415039 <- z -> 0.0
14:08:07 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:07 DEBUG opendrift.models.basemodel:836: Lifting 233 elements to seafloor.
14:08:07 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:07 INFO opendrift.models.basemodel:2882: 2023-09-02 07:46:21.121579 - step 107 of 216 - 3715 active elements (0 deactivated)
14:08:07 DEBUG opendrift.models.basemodel:2888: 6285 elements scheduled.
14:08:07 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:07 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:07 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:07 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:07 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:07 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:07 DEBUG opendrift.models.basemodel:1253: Data needed for 3715 elements
14:08:07 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:07 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:07 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:07 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:07 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:07 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:07 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:07 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:07 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:07 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:07 DEBUG opendrift.models.basemodel:1253: Data needed for 3715 elements
14:08:07 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:07 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 07:00:00 (before)
2023-09-02 08:00:00 (after)
14:08:08 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:08 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:08 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:08 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:08 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:08 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:08 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x23x5) for time after (2023-09-02 08:00:00)
14:08:08 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 07:00:00) in space (linearNDFast)
14:08:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:08 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 08:00:00) in space (linearNDFast)
14:08:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2069 elements, expanding data 1
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2069 elements, expanding data 1
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2161 elements, expanding data 1
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 156 elements, expanding data 2
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2161 elements, expanding data 1
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 156 elements, expanding data 2
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2161 elements, expanding data 1
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 156 elements, expanding data 2
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2161 elements, expanding data 1
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 156 elements, expanding data 2
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2161 elements, expanding data 1
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 156 elements, expanding data 2
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2899 elements, expanding data 1
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1122 elements, expanding data 2
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2899 elements, expanding data 1
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1122 elements, expanding data 2
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2899 elements, expanding data 1
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1122 elements, expanding data 2
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2899 elements, expanding data 1
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1122 elements, expanding data 2
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2899 elements, expanding data 1
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1122 elements, expanding data 2
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2069 elements, expanding data 1
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2069 elements, expanding data 1
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2069 elements, expanding data 1
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2069 elements, expanding data 1
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2069 elements, expanding data 1
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
14:08:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:08 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 07:00:00, weight 0.23) and
after (2023-09-02 08:00:00, weight 0.77) in time
14:08:08 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.06839734700774 and -58.95947755923674 degrees.
14:08:08 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.06839734700774 and -58.95947755923674 degrees.
14:08:08 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:08 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:08 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:08 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:08 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:08 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:08 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.704587 (min) 1.29123 (max)
14:08:08 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.939671 (min) 0.821196 (max)
14:08:08 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -4.73196e-05 (min) 0.000709899 (max)
14:08:08 DEBUG opendrift.models.basemodel:1524: x_wind: -7.63025 (min) 6.83183 (max)
14:08:08 DEBUG opendrift.models.basemodel:1524: y_wind: -10.9411 (min) 3.46613 (max)
14:08:08 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:08 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:08 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:08 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:08 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:08 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:08 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:08 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3781 (max)
14:08:08 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:08 DEBUG opendrift.models.basemodel:1527: 3715 active elements
14:08:08 DEBUG opendrift.models.basemodel:1538: 59.101254485108136 <- latitude -> 59.18792921069293
14:08:08 DEBUG opendrift.models.basemodel:1543: 10.931613216533842 <- longitude -> 11.04053299565962
14:08:08 DEBUG opendrift.models.basemodel:1548: -14.035298347473145 <- z -> 0.0
14:08:08 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:08 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:08 DEBUG opendrift.models.physics_methods:1050: min: 0.048789, mean: 3.547069, max: 9.573863
14:08:08 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.048789, mean: 3.547069, max: 9.573863
14:08:08 DEBUG opendrift.models.basemodel:813: 532 elements hit coastline, moving back to water
14:08:08 DEBUG opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
14:08:08 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:08 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:08 DEBUG opendrift.models.physics_methods:828: Advecting 34 of 3715 elements above 0.100m with wind-sheared ocean current (0.013904 m/s - 0.151363 m/s)
14:08:08 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:08 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:08 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.11342072831256866
14:08:08 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:08 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:08 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:08 DEBUG opendrift.models.oceandrift:582: 444 elements penetrated seafloor, lifting up
14:08:08 DEBUG opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
14:08:08 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
14:08:08 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
14:08:08 DEBUG opendrift.models.oceandrift:582: 333 elements penetrated seafloor, lifting up
14:08:08 DEBUG opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
14:08:08 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
14:08:08 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
14:08:08 DEBUG opendrift.models.oceandrift:582: 297 elements penetrated seafloor, lifting up
14:08:08 DEBUG opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
14:08:08 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
14:08:08 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
14:08:08 DEBUG opendrift.models.oceandrift:582: 274 elements penetrated seafloor, lifting up
14:08:08 DEBUG opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
14:08:08 DEBUG opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
14:08:08 DEBUG opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
14:08:08 DEBUG opendrift.models.oceandrift:582: 287 elements penetrated seafloor, lifting up
14:08:08 DEBUG opendrift.models.oceandrift:600: 36 elements reached seafloor, set to bottom
14:08:08 DEBUG opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
14:08:08 DEBUG opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
14:08:08 DEBUG opendrift.models.oceandrift:582: 266 elements penetrated seafloor, lifting up
14:08:08 DEBUG opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
14:08:08 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
14:08:08 DEBUG opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
14:08:08 DEBUG opendrift.models.oceandrift:582: 281 elements penetrated seafloor, lifting up
14:08:08 DEBUG opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
14:08:08 DEBUG opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
14:08:08 DEBUG opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
14:08:08 DEBUG opendrift.models.oceandrift:582: 279 elements penetrated seafloor, lifting up
14:08:08 DEBUG opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
14:08:08 DEBUG opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
14:08:08 DEBUG opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
14:08:08 DEBUG opendrift.models.oceandrift:582: 274 elements penetrated seafloor, lifting up
14:08:08 DEBUG opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
14:08:08 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
14:08:08 DEBUG opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
14:08:08 DEBUG opendrift.models.oceandrift:582: 269 elements penetrated seafloor, lifting up
14:08:08 DEBUG opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
14:08:08 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
14:08:08 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
14:08:08 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:08 DEBUG opendrift.models.basemodel:2945: 3715 active elements (0 deactivated)
14:08:08 DEBUG opendrift.models.basemodel:1658: to be seeded: 6285, already seeded 3715
14:08:08 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:08:08 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:08 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:08 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:08 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:08 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:08 DEBUG opendrift.models.basemodel:1253: Data needed for 3750 elements
14:08:08 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:08 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 07:00:00 (before)
2023-09-02 08:00:00 (after)
14:08:08 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 07:00:00) in space (linearNDFast)
14:08:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:08 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:08 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:08 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:08 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:08 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:08 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3809 (max)
14:08:08 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:08 DEBUG opendrift.models.basemodel:1527: 3750 active elements
14:08:08 DEBUG opendrift.models.basemodel:1538: 59.100719668890434 <- latitude -> 59.18786970166184
14:08:08 DEBUG opendrift.models.basemodel:1543: 10.931343984228237 <- longitude -> 11.04093765276482
14:08:08 DEBUG opendrift.models.basemodel:1548: -14.035298347473145 <- z -> 0.0
14:08:08 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:08 DEBUG opendrift.models.basemodel:836: Lifting 251 elements to seafloor.
14:08:08 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:08 INFO opendrift.models.basemodel:2882: 2023-09-02 07:56:21.121579 - step 108 of 216 - 3750 active elements (0 deactivated)
14:08:08 DEBUG opendrift.models.basemodel:2888: 6250 elements scheduled.
14:08:08 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:08 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:08 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:08 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:08 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:08 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:08 DEBUG opendrift.models.basemodel:1253: Data needed for 3750 elements
14:08:08 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:08 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:08 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:08 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:08 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:08 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:08 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:08 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:08 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:08 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:08 DEBUG opendrift.models.basemodel:1253: Data needed for 3750 elements
14:08:08 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:08 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 07:00:00 (before)
2023-09-02 08:00:00 (after)
14:08:09 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:09 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:09 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:09 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:09 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:09 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:09 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x22x5) for time after (2023-09-02 08:00:00)
14:08:09 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 07:00:00) in space (linearNDFast)
14:08:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:09 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 08:00:00) in space (linearNDFast)
14:08:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2059 elements, expanding data 1
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2059 elements, expanding data 1
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2152 elements, expanding data 1
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 150 elements, expanding data 2
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2152 elements, expanding data 1
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 150 elements, expanding data 2
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2152 elements, expanding data 1
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 150 elements, expanding data 2
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2152 elements, expanding data 1
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 150 elements, expanding data 2
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2152 elements, expanding data 1
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 150 elements, expanding data 2
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2955 elements, expanding data 1
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1124 elements, expanding data 2
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2955 elements, expanding data 1
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1124 elements, expanding data 2
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2955 elements, expanding data 1
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1124 elements, expanding data 2
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2955 elements, expanding data 1
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1124 elements, expanding data 2
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2955 elements, expanding data 1
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1124 elements, expanding data 2
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2059 elements, expanding data 1
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2059 elements, expanding data 1
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2059 elements, expanding data 1
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2059 elements, expanding data 1
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2059 elements, expanding data 1
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
14:08:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:09 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 07:00:00, weight 0.06) and
after (2023-09-02 08:00:00, weight 0.94) in time
14:08:09 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.06866658138813 and -58.959072904975976 degrees.
14:08:09 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.06866658138813 and -58.959072904975976 degrees.
14:08:09 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:09 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:09 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:09 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:09 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:09 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:09 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.885361 (min) 1.15887 (max)
14:08:09 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.948723 (min) 0.7565 (max)
14:08:09 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -6.09615e-05 (min) 0.000558752 (max)
14:08:09 DEBUG opendrift.models.basemodel:1524: x_wind: -7.07465 (min) 7.87177 (max)
14:08:09 DEBUG opendrift.models.basemodel:1524: y_wind: -10.8168 (min) 3.35253 (max)
14:08:09 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:09 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:09 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:09 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:09 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:09 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:09 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:09 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3809 (max)
14:08:09 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:09 DEBUG opendrift.models.basemodel:1527: 3750 active elements
14:08:09 DEBUG opendrift.models.basemodel:1538: 59.100719668890434 <- latitude -> 59.18786970166184
14:08:09 DEBUG opendrift.models.basemodel:1543: 10.931343984228237 <- longitude -> 11.04093765276482
14:08:09 DEBUG opendrift.models.basemodel:1548: -14.035298347473145 <- z -> 0.0
14:08:09 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:09 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:09 DEBUG opendrift.models.physics_methods:1050: min: 0.054991, mean: 3.564639, max: 9.680741
14:08:09 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.054991, mean: 3.564639, max: 9.680741
14:08:09 DEBUG opendrift.models.basemodel:813: 539 elements hit coastline, moving back to water
14:08:09 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:08:09 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:09 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:09 DEBUG opendrift.models.physics_methods:828: Advecting 39 of 3750 elements above 0.100m with wind-sheared ocean current (0.001755 m/s - 0.161479 m/s)
14:08:09 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:09 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:09 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.11596710973937988
14:08:09 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:09 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:09 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:09 DEBUG opendrift.models.oceandrift:582: 429 elements penetrated seafloor, lifting up
14:08:09 DEBUG opendrift.models.oceandrift:600: 44 elements reached seafloor, set to bottom
14:08:09 DEBUG opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
14:08:09 DEBUG opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
14:08:09 DEBUG opendrift.models.oceandrift:582: 367 elements penetrated seafloor, lifting up
14:08:09 DEBUG opendrift.models.oceandrift:600: 52 elements reached seafloor, set to bottom
14:08:09 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
14:08:09 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
14:08:09 DEBUG opendrift.models.oceandrift:582: 349 elements penetrated seafloor, lifting up
14:08:09 DEBUG opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
14:08:09 DEBUG opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
14:08:09 DEBUG opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
14:08:09 DEBUG opendrift.models.oceandrift:582: 292 elements penetrated seafloor, lifting up
14:08:09 DEBUG opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
14:08:09 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
14:08:09 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
14:08:09 DEBUG opendrift.models.oceandrift:582: 282 elements penetrated seafloor, lifting up
14:08:09 DEBUG opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
14:08:09 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
14:08:09 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
14:08:09 DEBUG opendrift.models.oceandrift:582: 283 elements penetrated seafloor, lifting up
14:08:09 DEBUG opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
14:08:09 DEBUG opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
14:08:09 DEBUG opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
14:08:09 DEBUG opendrift.models.oceandrift:582: 281 elements penetrated seafloor, lifting up
14:08:09 DEBUG opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
14:08:09 DEBUG opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
14:08:09 DEBUG opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
14:08:09 DEBUG opendrift.models.oceandrift:582: 263 elements penetrated seafloor, lifting up
14:08:09 DEBUG opendrift.models.oceandrift:600: 27 elements reached seafloor, set to bottom
14:08:09 DEBUG opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
14:08:09 DEBUG opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
14:08:09 DEBUG opendrift.models.oceandrift:582: 253 elements penetrated seafloor, lifting up
14:08:09 DEBUG opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
14:08:09 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
14:08:09 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
14:08:09 DEBUG opendrift.models.oceandrift:582: 286 elements penetrated seafloor, lifting up
14:08:09 DEBUG opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
14:08:09 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
14:08:09 DEBUG opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
14:08:09 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:09 DEBUG opendrift.models.basemodel:2945: 3750 active elements (0 deactivated)
14:08:09 DEBUG opendrift.models.basemodel:1658: to be seeded: 6250, already seeded 3750
14:08:09 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:08:09 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:09 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:09 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:09 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:09 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:09 DEBUG opendrift.models.basemodel:1253: Data needed for 3785 elements
14:08:09 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:09 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 08:00:00 (before)
2023-09-02 09:00:00 (after)
14:08:09 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 08:00:00) in space (linearNDFast)
14:08:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:09 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:09 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:09 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:09 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:09 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:09 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.367 (max)
14:08:09 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:09 DEBUG opendrift.models.basemodel:1527: 3785 active elements
14:08:09 DEBUG opendrift.models.basemodel:1538: 59.099676431446056 <- latitude -> 59.185670726913486
14:08:09 DEBUG opendrift.models.basemodel:1543: 10.927002299280844 <- longitude -> 11.041441454045337
14:08:09 DEBUG opendrift.models.basemodel:1548: -14.035298347473145 <- z -> 0.0
14:08:09 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:09 DEBUG opendrift.models.basemodel:836: Lifting 264 elements to seafloor.
14:08:09 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:09 INFO opendrift.models.basemodel:2882: 2023-09-02 08:06:21.121579 - step 109 of 216 - 3785 active elements (0 deactivated)
14:08:09 DEBUG opendrift.models.basemodel:2888: 6215 elements scheduled.
14:08:09 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:09 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:09 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:09 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:09 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:09 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:09 DEBUG opendrift.models.basemodel:1253: Data needed for 3785 elements
14:08:09 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:09 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:09 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:09 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:09 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:09 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:09 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:09 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:09 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:09 DEBUG opendrift.models.basemodel:1253: Data needed for 3785 elements
14:08:09 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:09 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 08:00:00 (before)
2023-09-02 09:00:00 (after)
14:08:10 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:10 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:10 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:10 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:10 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:10 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:10 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x23x5) for time after (2023-09-02 09:00:00)
14:08:10 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 08:00:00) in space (linearNDFast)
14:08:10 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:10 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 09:00:00) in space (linearNDFast)
14:08:10 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2084 elements, expanding data 1
14:08:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
14:08:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2084 elements, expanding data 1
14:08:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
14:08:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2169 elements, expanding data 1
14:08:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 157 elements, expanding data 2
14:08:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 3
14:08:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2169 elements, expanding data 1
14:08:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 157 elements, expanding data 2
14:08:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 3
14:08:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2169 elements, expanding data 1
14:08:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 157 elements, expanding data 2
14:08:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 3
14:08:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2169 elements, expanding data 1
14:08:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 157 elements, expanding data 2
14:08:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 3
14:08:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2169 elements, expanding data 1
14:08:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 157 elements, expanding data 2
14:08:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 3
14:08:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3002 elements, expanding data 1
14:08:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1125 elements, expanding data 2
14:08:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3002 elements, expanding data 1
14:08:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1125 elements, expanding data 2
14:08:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3002 elements, expanding data 1
14:08:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1125 elements, expanding data 2
14:08:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3002 elements, expanding data 1
14:08:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1125 elements, expanding data 2
14:08:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3002 elements, expanding data 1
14:08:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1125 elements, expanding data 2
14:08:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2084 elements, expanding data 1
14:08:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
14:08:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2084 elements, expanding data 1
14:08:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
14:08:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2084 elements, expanding data 1
14:08:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
14:08:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2084 elements, expanding data 1
14:08:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
14:08:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2084 elements, expanding data 1
14:08:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
14:08:10 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 08:00:00, weight 0.89) and
after (2023-09-02 09:00:00, weight 0.11) in time
14:08:10 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.07300826742202 and -58.95856909821623 degrees.
14:08:10 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.07300826742202 and -58.95856909821623 degrees.
14:08:10 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:10 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:10 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:10 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:10 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:10 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:10 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.763971 (min) 1.16897 (max)
14:08:10 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.08794 (min) 0.678286 (max)
14:08:10 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -5.83208e-05 (min) 0.000565066 (max)
14:08:10 DEBUG opendrift.models.basemodel:1524: x_wind: -7.71626 (min) 7.9994 (max)
14:08:10 DEBUG opendrift.models.basemodel:1524: y_wind: -9.93146 (min) 4.5199 (max)
14:08:10 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:10 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:10 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:10 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:10 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:10 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:10 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:10 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.367 (max)
14:08:10 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:10 DEBUG opendrift.models.basemodel:1527: 3785 active elements
14:08:10 DEBUG opendrift.models.basemodel:1538: 59.099676431446056 <- latitude -> 59.185670726913486
14:08:10 DEBUG opendrift.models.basemodel:1543: 10.927002299280844 <- longitude -> 11.041441454045337
14:08:10 DEBUG opendrift.models.basemodel:1548: -14.035298347473145 <- z -> 0.0
14:08:10 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:10 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:10 DEBUG opendrift.models.physics_methods:1050: min: 0.081460, mean: 3.499908, max: 8.642517
14:08:10 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.081460, mean: 3.499908, max: 8.642517
14:08:10 DEBUG opendrift.models.basemodel:813: 521 elements hit coastline, moving back to water
14:08:10 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:08:10 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:10 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:10 DEBUG opendrift.models.physics_methods:828: Advecting 36 of 3785 elements above 0.100m with wind-sheared ocean current (0.001110 m/s - 0.191775 m/s)
14:08:10 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:10 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:10 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09242766929300307
14:08:10 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:10 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:10 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:10 DEBUG opendrift.models.oceandrift:582: 445 elements penetrated seafloor, lifting up
14:08:10 DEBUG opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
14:08:10 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
14:08:10 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
14:08:10 DEBUG opendrift.models.oceandrift:582: 331 elements penetrated seafloor, lifting up
14:08:10 DEBUG opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
14:08:10 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
14:08:10 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
14:08:10 DEBUG opendrift.models.oceandrift:582: 316 elements penetrated seafloor, lifting up
14:08:10 DEBUG opendrift.models.oceandrift:600: 40 elements reached seafloor, set to bottom
14:08:10 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
14:08:10 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
14:08:10 DEBUG opendrift.models.oceandrift:582: 324 elements penetrated seafloor, lifting up
14:08:10 DEBUG opendrift.models.oceandrift:600: 42 elements reached seafloor, set to bottom
14:08:10 DEBUG opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
14:08:10 DEBUG opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
14:08:10 DEBUG opendrift.models.oceandrift:582: 297 elements penetrated seafloor, lifting up
14:08:10 DEBUG opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
14:08:10 DEBUG opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
14:08:10 DEBUG opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
14:08:10 DEBUG opendrift.models.oceandrift:582: 306 elements penetrated seafloor, lifting up
14:08:10 DEBUG opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
14:08:10 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
14:08:10 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
14:08:10 DEBUG opendrift.models.oceandrift:582: 277 elements penetrated seafloor, lifting up
14:08:10 DEBUG opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
14:08:10 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
14:08:10 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
14:08:10 DEBUG opendrift.models.oceandrift:582: 270 elements penetrated seafloor, lifting up
14:08:10 DEBUG opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
14:08:10 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
14:08:10 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
14:08:10 DEBUG opendrift.models.oceandrift:582: 267 elements penetrated seafloor, lifting up
14:08:10 DEBUG opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
14:08:10 DEBUG opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
14:08:10 DEBUG opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
14:08:10 DEBUG opendrift.models.oceandrift:582: 276 elements penetrated seafloor, lifting up
14:08:10 DEBUG opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
14:08:10 DEBUG opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
14:08:10 DEBUG opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
14:08:10 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:10 DEBUG opendrift.models.basemodel:2945: 3785 active elements (0 deactivated)
14:08:10 DEBUG opendrift.models.basemodel:1658: to be seeded: 6215, already seeded 3785
14:08:10 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:08:10 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:10 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:10 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:10 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:10 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:10 DEBUG opendrift.models.basemodel:1253: Data needed for 3820 elements
14:08:10 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:10 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 08:00:00 (before)
2023-09-02 09:00:00 (after)
14:08:10 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 08:00:00) in space (linearNDFast)
14:08:10 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:10 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:10 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:10 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:10 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:10 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:10 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4094 (max)
14:08:10 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:10 DEBUG opendrift.models.basemodel:1527: 3820 active elements
14:08:10 DEBUG opendrift.models.basemodel:1538: 59.099960146872704 <- latitude -> 59.18575936682132
14:08:10 DEBUG opendrift.models.basemodel:1543: 10.921172022748886 <- longitude -> 11.041027758151083
14:08:10 DEBUG opendrift.models.basemodel:1548: -14.035298347473145 <- z -> 0.0
14:08:10 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:10 DEBUG opendrift.models.basemodel:836: Lifting 264 elements to seafloor.
14:08:10 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:10 INFO opendrift.models.basemodel:2882: 2023-09-02 08:16:21.121579 - step 110 of 216 - 3820 active elements (0 deactivated)
14:08:10 DEBUG opendrift.models.basemodel:2888: 6180 elements scheduled.
14:08:10 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:10 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:10 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:10 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:10 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:10 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:10 DEBUG opendrift.models.basemodel:1253: Data needed for 3820 elements
14:08:10 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:10 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:10 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:10 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:10 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:10 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:10 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:10 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:10 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:10 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:10 DEBUG opendrift.models.basemodel:1253: Data needed for 3820 elements
14:08:10 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:10 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 08:00:00 (before)
2023-09-02 09:00:00 (after)
14:08:11 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:11 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:11 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:11 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:11 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:11 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:11 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x23x5) for time after (2023-09-02 09:00:00)
14:08:11 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 08:00:00) in space (linearNDFast)
14:08:11 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:11 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 09:00:00) in space (linearNDFast)
14:08:11 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2110 elements, expanding data 1
14:08:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
14:08:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2110 elements, expanding data 1
14:08:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
14:08:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2201 elements, expanding data 1
14:08:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 165 elements, expanding data 2
14:08:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 3
14:08:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2201 elements, expanding data 1
14:08:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 165 elements, expanding data 2
14:08:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 3
14:08:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2201 elements, expanding data 1
14:08:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 165 elements, expanding data 2
14:08:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 3
14:08:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2201 elements, expanding data 1
14:08:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 165 elements, expanding data 2
14:08:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 3
14:08:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2201 elements, expanding data 1
14:08:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 165 elements, expanding data 2
14:08:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 3
14:08:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3033 elements, expanding data 1
14:08:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1148 elements, expanding data 2
14:08:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3033 elements, expanding data 1
14:08:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1148 elements, expanding data 2
14:08:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3033 elements, expanding data 1
14:08:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1148 elements, expanding data 2
14:08:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3033 elements, expanding data 1
14:08:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1148 elements, expanding data 2
14:08:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3033 elements, expanding data 1
14:08:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1148 elements, expanding data 2
14:08:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2110 elements, expanding data 1
14:08:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
14:08:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2110 elements, expanding data 1
14:08:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
14:08:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2110 elements, expanding data 1
14:08:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
14:08:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2110 elements, expanding data 1
14:08:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
14:08:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2110 elements, expanding data 1
14:08:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
14:08:11 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 08:00:00, weight 0.73) and
after (2023-09-02 09:00:00, weight 0.27) in time
14:08:11 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.078838542977486 and -58.958982800152526 degrees.
14:08:11 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.078838542977486 and -58.958982800152526 degrees.
14:08:11 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:11 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:11 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:11 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:11 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:11 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:11 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.873412 (min) 1.36298 (max)
14:08:11 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.06172 (min) 1.17071 (max)
14:08:11 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -6.11723e-05 (min) 0.000589472 (max)
14:08:11 DEBUG opendrift.models.basemodel:1524: x_wind: -6.78001 (min) 6.95552 (max)
14:08:11 DEBUG opendrift.models.basemodel:1524: y_wind: -10.2622 (min) 3.43124 (max)
14:08:11 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:11 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:11 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:11 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:11 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:11 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:11 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:11 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4094 (max)
14:08:11 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:11 DEBUG opendrift.models.basemodel:1527: 3820 active elements
14:08:11 DEBUG opendrift.models.basemodel:1538: 59.099960146872704 <- latitude -> 59.18575936682132
14:08:11 DEBUG opendrift.models.basemodel:1543: 10.921172022748886 <- longitude -> 11.041027758151083
14:08:11 DEBUG opendrift.models.basemodel:1548: -14.035298347473145 <- z -> 0.0
14:08:11 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:11 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:11 DEBUG opendrift.models.physics_methods:1050: min: 0.057521, mean: 3.481730, max: 9.901613
14:08:11 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.057521, mean: 3.481730, max: 9.901613
14:08:11 DEBUG opendrift.models.basemodel:813: 504 elements hit coastline, moving back to water
14:08:11 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
14:08:11 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:11 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:11 DEBUG opendrift.models.physics_methods:828: Advecting 35 of 3820 elements above 0.100m with wind-sheared ocean current (0.021452 m/s - 0.141491 m/s)
14:08:11 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:11 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:11 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.12131900932462691
14:08:11 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:11 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:11 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:11 DEBUG opendrift.models.oceandrift:582: 431 elements penetrated seafloor, lifting up
14:08:11 DEBUG opendrift.models.oceandrift:600: 56 elements reached seafloor, set to bottom
14:08:11 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
14:08:11 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
14:08:11 DEBUG opendrift.models.oceandrift:582: 357 elements penetrated seafloor, lifting up
14:08:11 DEBUG opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
14:08:11 DEBUG opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
14:08:11 DEBUG opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
14:08:11 DEBUG opendrift.models.oceandrift:582: 304 elements penetrated seafloor, lifting up
14:08:11 DEBUG opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
14:08:11 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
14:08:11 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
14:08:11 DEBUG opendrift.models.oceandrift:582: 294 elements penetrated seafloor, lifting up
14:08:11 DEBUG opendrift.models.oceandrift:600: 44 elements reached seafloor, set to bottom
14:08:11 DEBUG opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
14:08:11 DEBUG opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
14:08:11 DEBUG opendrift.models.oceandrift:582: 299 elements penetrated seafloor, lifting up
14:08:11 DEBUG opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
14:08:11 DEBUG opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
14:08:11 DEBUG opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
14:08:11 DEBUG opendrift.models.oceandrift:582: 326 elements penetrated seafloor, lifting up
14:08:11 DEBUG opendrift.models.oceandrift:600: 29 elements reached seafloor, set to bottom
14:08:11 DEBUG opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
14:08:11 DEBUG opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
14:08:11 DEBUG opendrift.models.oceandrift:582: 273 elements penetrated seafloor, lifting up
14:08:11 DEBUG opendrift.models.oceandrift:600: 29 elements reached seafloor, set to bottom
14:08:11 DEBUG opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
14:08:11 DEBUG opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
14:08:11 DEBUG opendrift.models.oceandrift:582: 260 elements penetrated seafloor, lifting up
14:08:11 DEBUG opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
14:08:11 DEBUG opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
14:08:11 DEBUG opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
14:08:11 DEBUG opendrift.models.oceandrift:582: 304 elements penetrated seafloor, lifting up
14:08:11 DEBUG opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
14:08:11 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
14:08:11 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
14:08:11 DEBUG opendrift.models.oceandrift:582: 272 elements penetrated seafloor, lifting up
14:08:11 DEBUG opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
14:08:11 DEBUG opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
14:08:11 DEBUG opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
14:08:11 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:11 DEBUG opendrift.models.basemodel:2945: 3820 active elements (0 deactivated)
14:08:11 DEBUG opendrift.models.basemodel:1658: to be seeded: 6180, already seeded 3820
14:08:11 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:08:11 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:11 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:11 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:11 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:11 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:11 DEBUG opendrift.models.basemodel:1253: Data needed for 3854 elements
14:08:11 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:11 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 08:00:00 (before)
2023-09-02 09:00:00 (after)
14:08:11 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 08:00:00) in space (linearNDFast)
14:08:11 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:11 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:11 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:11 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:11 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:11 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:11 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4149 (max)
14:08:11 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:11 DEBUG opendrift.models.basemodel:1527: 3854 active elements
14:08:11 DEBUG opendrift.models.basemodel:1538: 59.099477094866074 <- latitude -> 59.185933589553095
14:08:11 DEBUG opendrift.models.basemodel:1543: 10.921001477173942 <- longitude -> 11.040235922606923
14:08:11 DEBUG opendrift.models.basemodel:1548: -15.020501365661621 <- z -> 0.0
14:08:11 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:11 DEBUG opendrift.models.basemodel:836: Lifting 262 elements to seafloor.
14:08:11 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:11 INFO opendrift.models.basemodel:2882: 2023-09-02 08:26:21.121579 - step 111 of 216 - 3854 active elements (0 deactivated)
14:08:11 DEBUG opendrift.models.basemodel:2888: 6146 elements scheduled.
14:08:11 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:11 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:11 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:11 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:11 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:11 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:11 DEBUG opendrift.models.basemodel:1253: Data needed for 3854 elements
14:08:11 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:11 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:11 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:11 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:11 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:11 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:11 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:11 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:11 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:11 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:11 DEBUG opendrift.models.basemodel:1253: Data needed for 3854 elements
14:08:11 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:11 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 08:00:00 (before)
2023-09-02 09:00:00 (after)
14:08:12 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:12 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:12 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:12 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:12 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:12 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:12 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x23x6) for time after (2023-09-02 09:00:00)
14:08:12 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 08:00:00) in space (linearNDFast)
14:08:12 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:12 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 09:00:00) in space (linearNDFast)
14:08:12 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2141 elements, expanding data 1
14:08:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
14:08:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2141 elements, expanding data 1
14:08:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
14:08:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2222 elements, expanding data 1
14:08:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 176 elements, expanding data 2
14:08:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 3
14:08:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2222 elements, expanding data 1
14:08:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 176 elements, expanding data 2
14:08:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 3
14:08:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2222 elements, expanding data 1
14:08:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 176 elements, expanding data 2
14:08:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 3
14:08:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2222 elements, expanding data 1
14:08:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 176 elements, expanding data 2
14:08:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 3
14:08:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2222 elements, expanding data 1
14:08:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 176 elements, expanding data 2
14:08:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 3
14:08:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2222 elements, expanding data 1
14:08:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 176 elements, expanding data 2
14:08:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 3
14:08:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3058 elements, expanding data 1
14:08:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1160 elements, expanding data 2
14:08:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3058 elements, expanding data 1
14:08:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1160 elements, expanding data 2
14:08:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3058 elements, expanding data 1
14:08:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1160 elements, expanding data 2
14:08:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3058 elements, expanding data 1
14:08:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1160 elements, expanding data 2
14:08:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3058 elements, expanding data 1
14:08:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1160 elements, expanding data 2
14:08:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3058 elements, expanding data 1
14:08:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1160 elements, expanding data 2
14:08:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2141 elements, expanding data 1
14:08:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
14:08:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2141 elements, expanding data 1
14:08:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
14:08:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2141 elements, expanding data 1
14:08:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
14:08:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2141 elements, expanding data 1
14:08:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
14:08:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2141 elements, expanding data 1
14:08:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
14:08:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2141 elements, expanding data 1
14:08:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
14:08:12 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 08:00:00, weight 0.56) and
after (2023-09-02 09:00:00, weight 0.44) in time
14:08:12 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.07900908391843 and -58.959774629637316 degrees.
14:08:12 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.07900908391843 and -58.959774629637316 degrees.
14:08:12 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:12 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:12 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:12 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:12 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:12 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:12 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.865307 (min) 1.12265 (max)
14:08:12 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.971913 (min) 0.758838 (max)
14:08:12 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -7.93083e-05 (min) 0.000534867 (max)
14:08:12 DEBUG opendrift.models.basemodel:1524: x_wind: -7.15779 (min) 6.67698 (max)
14:08:12 DEBUG opendrift.models.basemodel:1524: y_wind: -10.177 (min) 3.75199 (max)
14:08:12 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:12 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:12 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:12 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:12 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:12 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:12 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:12 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4149 (max)
14:08:12 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:12 DEBUG opendrift.models.basemodel:1527: 3854 active elements
14:08:12 DEBUG opendrift.models.basemodel:1538: 59.099477094866074 <- latitude -> 59.185933589553095
14:08:12 DEBUG opendrift.models.basemodel:1543: 10.921001477173942 <- longitude -> 11.040235922606923
14:08:12 DEBUG opendrift.models.basemodel:1548: -15.020501365661621 <- z -> 0.0
14:08:12 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:12 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:12 DEBUG opendrift.models.physics_methods:1050: min: 0.063255, mean: 3.421180, max: 9.111526
14:08:12 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.063255, mean: 3.421180, max: 9.111526
14:08:12 DEBUG opendrift.models.basemodel:813: 526 elements hit coastline, moving back to water
14:08:12 DEBUG opendrift.models.basemodel:836: Lifting 94 elements to seafloor.
14:08:12 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:12 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:12 DEBUG opendrift.models.physics_methods:828: Advecting 34 of 3854 elements above 0.100m with wind-sheared ocean current (0.018664 m/s - 0.151362 m/s)
14:08:12 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:12 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:12 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.1027310710955429
14:08:12 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:12 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:12 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:12 DEBUG opendrift.models.oceandrift:582: 433 elements penetrated seafloor, lifting up
14:08:12 DEBUG opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
14:08:12 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
14:08:12 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
14:08:12 DEBUG opendrift.models.oceandrift:582: 352 elements penetrated seafloor, lifting up
14:08:12 DEBUG opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
14:08:12 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
14:08:12 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
14:08:12 DEBUG opendrift.models.oceandrift:582: 334 elements penetrated seafloor, lifting up
14:08:12 DEBUG opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
14:08:12 DEBUG opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
14:08:12 DEBUG opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
14:08:12 DEBUG opendrift.models.oceandrift:582: 314 elements penetrated seafloor, lifting up
14:08:12 DEBUG opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
14:08:12 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
14:08:12 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
14:08:12 DEBUG opendrift.models.oceandrift:582: 326 elements penetrated seafloor, lifting up
14:08:12 DEBUG opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
14:08:12 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
14:08:12 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
14:08:12 DEBUG opendrift.models.oceandrift:582: 278 elements penetrated seafloor, lifting up
14:08:12 DEBUG opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
14:08:12 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
14:08:12 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
14:08:12 DEBUG opendrift.models.oceandrift:582: 265 elements penetrated seafloor, lifting up
14:08:12 DEBUG opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
14:08:12 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
14:08:12 DEBUG opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
14:08:12 DEBUG opendrift.models.oceandrift:582: 281 elements penetrated seafloor, lifting up
14:08:12 DEBUG opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
14:08:12 DEBUG opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
14:08:12 DEBUG opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
14:08:12 DEBUG opendrift.models.oceandrift:582: 274 elements penetrated seafloor, lifting up
14:08:12 DEBUG opendrift.models.oceandrift:600: 40 elements reached seafloor, set to bottom
14:08:12 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
14:08:12 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
14:08:12 DEBUG opendrift.models.oceandrift:582: 255 elements penetrated seafloor, lifting up
14:08:12 DEBUG opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
14:08:12 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
14:08:12 DEBUG opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
14:08:12 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:12 DEBUG opendrift.models.basemodel:2945: 3854 active elements (0 deactivated)
14:08:12 DEBUG opendrift.models.basemodel:1658: to be seeded: 6146, already seeded 3854
14:08:12 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:08:12 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:12 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:12 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:12 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:12 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:12 DEBUG opendrift.models.basemodel:1253: Data needed for 3889 elements
14:08:12 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:12 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 08:00:00 (before)
2023-09-02 09:00:00 (after)
14:08:12 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 08:00:00) in space (linearNDFast)
14:08:12 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:12 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:12 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:12 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:12 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:12 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:12 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4064 (max)
14:08:12 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:12 DEBUG opendrift.models.basemodel:1527: 3889 active elements
14:08:12 DEBUG opendrift.models.basemodel:1538: 59.09876503955904 <- latitude -> 59.18689894972435
14:08:12 DEBUG opendrift.models.basemodel:1543: 10.920142278091003 <- longitude -> 11.041376591786188
14:08:12 DEBUG opendrift.models.basemodel:1548: -14.025297393798828 <- z -> 0.0
14:08:12 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:12 DEBUG opendrift.models.basemodel:836: Lifting 276 elements to seafloor.
14:08:12 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:12 INFO opendrift.models.basemodel:2882: 2023-09-02 08:36:21.121579 - step 112 of 216 - 3889 active elements (0 deactivated)
14:08:12 DEBUG opendrift.models.basemodel:2888: 6111 elements scheduled.
14:08:12 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:12 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:12 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:12 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:12 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:12 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:12 DEBUG opendrift.models.basemodel:1253: Data needed for 3889 elements
14:08:12 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:12 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:12 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:12 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:12 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:12 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:12 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:12 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:12 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:12 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:12 DEBUG opendrift.models.basemodel:1253: Data needed for 3889 elements
14:08:12 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:12 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 08:00:00 (before)
2023-09-02 09:00:00 (after)
14:08:13 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:13 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:13 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:13 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:13 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:13 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:13 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x22x5) for time after (2023-09-02 09:00:00)
14:08:13 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 08:00:00) in space (linearNDFast)
14:08:13 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:13 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 09:00:00) in space (linearNDFast)
14:08:13 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2169 elements, expanding data 1
14:08:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
14:08:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2169 elements, expanding data 1
14:08:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
14:08:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2243 elements, expanding data 1
14:08:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 173 elements, expanding data 2
14:08:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
14:08:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2243 elements, expanding data 1
14:08:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 173 elements, expanding data 2
14:08:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
14:08:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2243 elements, expanding data 1
14:08:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 173 elements, expanding data 2
14:08:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
14:08:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2243 elements, expanding data 1
14:08:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 173 elements, expanding data 2
14:08:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
14:08:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2243 elements, expanding data 1
14:08:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 173 elements, expanding data 2
14:08:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
14:08:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3114 elements, expanding data 1
14:08:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1183 elements, expanding data 2
14:08:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3114 elements, expanding data 1
14:08:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1183 elements, expanding data 2
14:08:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3114 elements, expanding data 1
14:08:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1183 elements, expanding data 2
14:08:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3114 elements, expanding data 1
14:08:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1183 elements, expanding data 2
14:08:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3114 elements, expanding data 1
14:08:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1183 elements, expanding data 2
14:08:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2169 elements, expanding data 1
14:08:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
14:08:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2169 elements, expanding data 1
14:08:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
14:08:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2169 elements, expanding data 1
14:08:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
14:08:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2169 elements, expanding data 1
14:08:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
14:08:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2169 elements, expanding data 1
14:08:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
14:08:13 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 08:00:00, weight 0.39) and
after (2023-09-02 09:00:00, weight 0.61) in time
14:08:13 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.07986828632266 and -58.95863395738034 degrees.
14:08:13 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.07986828632266 and -58.95863395738034 degrees.
14:08:13 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:13 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:13 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:13 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:13 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:13 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:13 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.816854 (min) 1.22462 (max)
14:08:13 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.03183 (min) 0.818439 (max)
14:08:13 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -8.21867e-05 (min) 0.000548299 (max)
14:08:13 DEBUG opendrift.models.basemodel:1524: x_wind: -6.60967 (min) 5.86965 (max)
14:08:13 DEBUG opendrift.models.basemodel:1524: y_wind: -12.0059 (min) 3.99529 (max)
14:08:13 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:13 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:13 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:13 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:13 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:13 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:13 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:13 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4064 (max)
14:08:13 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:13 DEBUG opendrift.models.basemodel:1527: 3889 active elements
14:08:13 DEBUG opendrift.models.basemodel:1538: 59.09876503955904 <- latitude -> 59.18689894972435
14:08:13 DEBUG opendrift.models.basemodel:1543: 10.920142278091003 <- longitude -> 11.041376591786188
14:08:13 DEBUG opendrift.models.basemodel:1548: -14.025297393798828 <- z -> 0.0
14:08:13 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:13 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:13 DEBUG opendrift.models.physics_methods:1050: min: 0.021841, mean: 3.443944, max: 10.293004
14:08:13 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.021841, mean: 3.443944, max: 10.293004
14:08:13 DEBUG opendrift.models.basemodel:813: 525 elements hit coastline, moving back to water
14:08:13 DEBUG opendrift.models.basemodel:836: Lifting 104 elements to seafloor.
14:08:13 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:13 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:13 DEBUG opendrift.models.physics_methods:828: Advecting 36 of 3889 elements above 0.100m with wind-sheared ocean current (0.018066 m/s - 0.191518 m/s)
14:08:13 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:13 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:13 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.13109923829801556
14:08:13 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:13 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:13 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:13 DEBUG opendrift.models.oceandrift:582: 426 elements penetrated seafloor, lifting up
14:08:13 DEBUG opendrift.models.oceandrift:600: 40 elements reached seafloor, set to bottom
14:08:13 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
14:08:13 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
14:08:13 DEBUG opendrift.models.oceandrift:582: 352 elements penetrated seafloor, lifting up
14:08:13 DEBUG opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
14:08:13 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
14:08:13 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
14:08:13 DEBUG opendrift.models.oceandrift:582: 346 elements penetrated seafloor, lifting up
14:08:13 DEBUG opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
14:08:13 DEBUG opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
14:08:13 DEBUG opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
14:08:13 DEBUG opendrift.models.oceandrift:582: 339 elements penetrated seafloor, lifting up
14:08:13 DEBUG opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
14:08:13 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
14:08:13 DEBUG opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
14:08:13 DEBUG opendrift.models.oceandrift:582: 325 elements penetrated seafloor, lifting up
14:08:13 DEBUG opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
14:08:13 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
14:08:13 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
14:08:13 DEBUG opendrift.models.oceandrift:582: 338 elements penetrated seafloor, lifting up
14:08:13 DEBUG opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
14:08:13 DEBUG opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
14:08:13 DEBUG opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
14:08:13 DEBUG opendrift.models.oceandrift:582: 301 elements penetrated seafloor, lifting up
14:08:13 DEBUG opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
14:08:13 DEBUG opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
14:08:13 DEBUG opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
14:08:13 DEBUG opendrift.models.oceandrift:582: 296 elements penetrated seafloor, lifting up
14:08:13 DEBUG opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
14:08:13 DEBUG opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
14:08:13 DEBUG opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
14:08:13 DEBUG opendrift.models.oceandrift:582: 285 elements penetrated seafloor, lifting up
14:08:13 DEBUG opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
14:08:13 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
14:08:13 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
14:08:13 DEBUG opendrift.models.oceandrift:582: 261 elements penetrated seafloor, lifting up
14:08:13 DEBUG opendrift.models.oceandrift:600: 29 elements reached seafloor, set to bottom
14:08:13 DEBUG opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
14:08:13 DEBUG opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
14:08:13 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:13 DEBUG opendrift.models.basemodel:2945: 3889 active elements (0 deactivated)
14:08:13 DEBUG opendrift.models.basemodel:1658: to be seeded: 6111, already seeded 3889
14:08:13 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:08:13 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:13 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:13 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:13 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:13 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:13 DEBUG opendrift.models.basemodel:1253: Data needed for 3924 elements
14:08:13 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:13 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 08:00:00 (before)
2023-09-02 09:00:00 (after)
14:08:13 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 08:00:00) in space (linearNDFast)
14:08:13 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:13 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:13 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:13 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:13 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:13 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:13 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4213 (max)
14:08:13 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:13 DEBUG opendrift.models.basemodel:1527: 3924 active elements
14:08:13 DEBUG opendrift.models.basemodel:1538: 59.09894911730993 <- latitude -> 59.18524013462059
14:08:13 DEBUG opendrift.models.basemodel:1543: 10.920151742822144 <- longitude -> 11.038391860542085
14:08:13 DEBUG opendrift.models.basemodel:1548: -15.40639591217041 <- z -> 0.0
14:08:13 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:13 DEBUG opendrift.models.basemodel:836: Lifting 252 elements to seafloor.
14:08:13 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:13 INFO opendrift.models.basemodel:2882: 2023-09-02 08:46:21.121579 - step 113 of 216 - 3924 active elements (0 deactivated)
14:08:13 DEBUG opendrift.models.basemodel:2888: 6076 elements scheduled.
14:08:13 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:13 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:13 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:13 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:13 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:13 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:13 DEBUG opendrift.models.basemodel:1253: Data needed for 3924 elements
14:08:13 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:13 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:13 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:13 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:13 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:13 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:13 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:13 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:13 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:13 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:13 DEBUG opendrift.models.basemodel:1253: Data needed for 3924 elements
14:08:13 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:13 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 08:00:00 (before)
2023-09-02 09:00:00 (after)
14:08:14 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:14 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:14 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:14 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:14 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:14 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:14 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x23x6) for time after (2023-09-02 09:00:00)
14:08:14 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 08:00:00) in space (linearNDFast)
14:08:14 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:14 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 09:00:00) in space (linearNDFast)
14:08:14 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2214 elements, expanding data 1
14:08:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 2
14:08:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2214 elements, expanding data 1
14:08:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 2
14:08:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2290 elements, expanding data 1
14:08:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 167 elements, expanding data 2
14:08:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 3
14:08:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2290 elements, expanding data 1
14:08:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 167 elements, expanding data 2
14:08:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 3
14:08:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2290 elements, expanding data 1
14:08:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 167 elements, expanding data 2
14:08:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 3
14:08:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2290 elements, expanding data 1
14:08:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 167 elements, expanding data 2
14:08:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 3
14:08:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2290 elements, expanding data 1
14:08:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 167 elements, expanding data 2
14:08:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 3
14:08:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2290 elements, expanding data 1
14:08:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 167 elements, expanding data 2
14:08:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 3
14:08:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3177 elements, expanding data 1
14:08:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1201 elements, expanding data 2
14:08:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3177 elements, expanding data 1
14:08:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1201 elements, expanding data 2
14:08:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3177 elements, expanding data 1
14:08:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1201 elements, expanding data 2
14:08:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3177 elements, expanding data 1
14:08:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1201 elements, expanding data 2
14:08:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3177 elements, expanding data 1
14:08:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1201 elements, expanding data 2
14:08:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3177 elements, expanding data 1
14:08:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1201 elements, expanding data 2
14:08:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2214 elements, expanding data 1
14:08:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 2
14:08:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2214 elements, expanding data 1
14:08:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 2
14:08:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2214 elements, expanding data 1
14:08:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 2
14:08:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2214 elements, expanding data 1
14:08:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 2
14:08:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2214 elements, expanding data 1
14:08:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 2
14:08:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2214 elements, expanding data 1
14:08:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 2
14:08:14 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 08:00:00, weight 0.23) and
after (2023-09-02 09:00:00, weight 0.77) in time
14:08:14 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.07985883847074 and -58.96161869657059 degrees.
14:08:14 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.07985883847074 and -58.96161869657059 degrees.
14:08:14 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:14 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:14 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:14 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:14 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:14 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:14 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.703458 (min) 1.24964 (max)
14:08:14 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.98012 (min) 0.768537 (max)
14:08:14 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -9.02758e-05 (min) 0.000631553 (max)
14:08:14 DEBUG opendrift.models.basemodel:1524: x_wind: -7.77951 (min) 7.11858 (max)
14:08:14 DEBUG opendrift.models.basemodel:1524: y_wind: -9.97185 (min) 4.5807 (max)
14:08:14 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:14 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:14 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:14 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:14 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:14 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:14 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:14 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4213 (max)
14:08:14 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:14 DEBUG opendrift.models.basemodel:1527: 3924 active elements
14:08:14 DEBUG opendrift.models.basemodel:1538: 59.09894911730993 <- latitude -> 59.18524013462059
14:08:14 DEBUG opendrift.models.basemodel:1543: 10.920151742822144 <- longitude -> 11.038391860542085
14:08:14 DEBUG opendrift.models.basemodel:1548: -15.40639591217041 <- z -> 0.0
14:08:14 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:14 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:14 DEBUG opendrift.models.physics_methods:1050: min: 0.019839, mean: 3.369080, max: 8.845170
14:08:14 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.019839, mean: 3.369080, max: 8.845170
14:08:14 DEBUG opendrift.models.basemodel:813: 498 elements hit coastline, moving back to water
14:08:14 DEBUG opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
14:08:14 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:14 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:14 DEBUG opendrift.models.physics_methods:828: Advecting 36 of 3924 elements above 0.100m with wind-sheared ocean current (0.001065 m/s - 0.157197 m/s)
14:08:14 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:14 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:14 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09681285777814864
14:08:14 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:14 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:14 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:14 DEBUG opendrift.models.oceandrift:582: 425 elements penetrated seafloor, lifting up
14:08:14 DEBUG opendrift.models.oceandrift:600: 52 elements reached seafloor, set to bottom
14:08:14 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
14:08:14 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
14:08:14 DEBUG opendrift.models.oceandrift:582: 354 elements penetrated seafloor, lifting up
14:08:14 DEBUG opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
14:08:14 DEBUG opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
14:08:14 DEBUG opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
14:08:14 DEBUG opendrift.models.oceandrift:582: 287 elements penetrated seafloor, lifting up
14:08:14 DEBUG opendrift.models.oceandrift:600: 54 elements reached seafloor, set to bottom
14:08:14 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
14:08:14 DEBUG opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
14:08:14 DEBUG opendrift.models.oceandrift:582: 311 elements penetrated seafloor, lifting up
14:08:14 DEBUG opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
14:08:14 DEBUG opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
14:08:14 DEBUG opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
14:08:14 DEBUG opendrift.models.oceandrift:582: 267 elements penetrated seafloor, lifting up
14:08:14 DEBUG opendrift.models.oceandrift:600: 36 elements reached seafloor, set to bottom
14:08:14 DEBUG opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
14:08:14 DEBUG opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
14:08:14 DEBUG opendrift.models.oceandrift:582: 261 elements penetrated seafloor, lifting up
14:08:14 DEBUG opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
14:08:14 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
14:08:14 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
14:08:14 DEBUG opendrift.models.oceandrift:582: 269 elements penetrated seafloor, lifting up
14:08:14 DEBUG opendrift.models.oceandrift:600: 40 elements reached seafloor, set to bottom
14:08:14 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
14:08:14 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
14:08:14 DEBUG opendrift.models.oceandrift:582: 253 elements penetrated seafloor, lifting up
14:08:14 DEBUG opendrift.models.oceandrift:600: 40 elements reached seafloor, set to bottom
14:08:14 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
14:08:14 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
14:08:14 DEBUG opendrift.models.oceandrift:582: 280 elements penetrated seafloor, lifting up
14:08:14 DEBUG opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
14:08:14 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
14:08:14 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
14:08:14 DEBUG opendrift.models.oceandrift:582: 285 elements penetrated seafloor, lifting up
14:08:14 DEBUG opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
14:08:14 DEBUG opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
14:08:14 DEBUG opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
14:08:14 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:14 DEBUG opendrift.models.basemodel:2945: 3924 active elements (0 deactivated)
14:08:14 DEBUG opendrift.models.basemodel:1658: to be seeded: 6076, already seeded 3924
14:08:14 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:08:14 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:14 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:14 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:14 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:14 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:14 DEBUG opendrift.models.basemodel:1253: Data needed for 3958 elements
14:08:14 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:14 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 08:00:00 (before)
2023-09-02 09:00:00 (after)
14:08:14 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 08:00:00) in space (linearNDFast)
14:08:14 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:14 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:14 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:14 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:14 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:14 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:14 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4213 (max)
14:08:14 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:14 DEBUG opendrift.models.basemodel:1527: 3958 active elements
14:08:14 DEBUG opendrift.models.basemodel:1538: 59.09894911730994 <- latitude -> 59.18942942890044
14:08:14 DEBUG opendrift.models.basemodel:1543: 10.920775629428775 <- longitude -> 11.03779380065781
14:08:14 DEBUG opendrift.models.basemodel:1548: -15.40639591217041 <- z -> 0.0
14:08:14 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:14 DEBUG opendrift.models.basemodel:836: Lifting 282 elements to seafloor.
14:08:14 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:14 INFO opendrift.models.basemodel:2882: 2023-09-02 08:56:21.121579 - step 114 of 216 - 3958 active elements (0 deactivated)
14:08:14 DEBUG opendrift.models.basemodel:2888: 6042 elements scheduled.
14:08:14 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:14 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:14 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:14 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:14 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:14 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:14 DEBUG opendrift.models.basemodel:1253: Data needed for 3958 elements
14:08:14 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:14 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:14 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:14 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:14 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:14 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:14 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:14 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:14 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:14 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:14 DEBUG opendrift.models.basemodel:1253: Data needed for 3958 elements
14:08:14 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:14 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 08:00:00 (before)
2023-09-02 09:00:00 (after)
14:08:15 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:15 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:15 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:15 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:15 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:15 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:15 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x23x6) for time after (2023-09-02 09:00:00)
14:08:15 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 08:00:00) in space (linearNDFast)
14:08:15 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:15 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 09:00:00) in space (linearNDFast)
14:08:15 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2244 elements, expanding data 1
14:08:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 2
14:08:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2244 elements, expanding data 1
14:08:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 2
14:08:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2323 elements, expanding data 1
14:08:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 178 elements, expanding data 2
14:08:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 3
14:08:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2323 elements, expanding data 1
14:08:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 178 elements, expanding data 2
14:08:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 3
14:08:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2323 elements, expanding data 1
14:08:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 178 elements, expanding data 2
14:08:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 3
14:08:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2323 elements, expanding data 1
14:08:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 178 elements, expanding data 2
14:08:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 3
14:08:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2323 elements, expanding data 1
14:08:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 178 elements, expanding data 2
14:08:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 3
14:08:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2323 elements, expanding data 1
14:08:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 178 elements, expanding data 2
14:08:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 3
14:08:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3210 elements, expanding data 1
14:08:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1226 elements, expanding data 2
14:08:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3210 elements, expanding data 1
14:08:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1226 elements, expanding data 2
14:08:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3210 elements, expanding data 1
14:08:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1226 elements, expanding data 2
14:08:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3210 elements, expanding data 1
14:08:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1226 elements, expanding data 2
14:08:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3210 elements, expanding data 1
14:08:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1226 elements, expanding data 2
14:08:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3210 elements, expanding data 1
14:08:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1226 elements, expanding data 2
14:08:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2244 elements, expanding data 1
14:08:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 2
14:08:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2244 elements, expanding data 1
14:08:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 2
14:08:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2244 elements, expanding data 1
14:08:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 2
14:08:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2244 elements, expanding data 1
14:08:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 2
14:08:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2244 elements, expanding data 1
14:08:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 2
14:08:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2244 elements, expanding data 1
14:08:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 2
14:08:15 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 08:00:00, weight 0.06) and
after (2023-09-02 09:00:00, weight 0.94) in time
14:08:15 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.07923494321736 and -58.96221676144691 degrees.
14:08:15 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.07923494321736 and -58.96221676144691 degrees.
14:08:15 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:15 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:15 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:15 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:15 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:15 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:15 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.746802 (min) 1.26863 (max)
14:08:15 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.994718 (min) 0.783735 (max)
14:08:15 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000104311 (min) 0.000709234 (max)
14:08:15 DEBUG opendrift.models.basemodel:1524: x_wind: -7.08403 (min) 6.10451 (max)
14:08:15 DEBUG opendrift.models.basemodel:1524: y_wind: -9.95423 (min) 3.67227 (max)
14:08:15 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:15 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:15 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:15 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:15 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:15 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:15 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:15 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4213 (max)
14:08:15 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:15 DEBUG opendrift.models.basemodel:1527: 3958 active elements
14:08:15 DEBUG opendrift.models.basemodel:1538: 59.09894911730994 <- latitude -> 59.18942942890044
14:08:15 DEBUG opendrift.models.basemodel:1543: 10.920775629428775 <- longitude -> 11.03779380065781
14:08:15 DEBUG opendrift.models.basemodel:1548: -15.40639591217041 <- z -> 0.0
14:08:15 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:15 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:15 DEBUG opendrift.models.physics_methods:1050: min: 0.135737, mean: 3.302143, max: 8.997613
14:08:15 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.135737, mean: 3.302143, max: 8.997613
14:08:15 DEBUG opendrift.models.basemodel:813: 502 elements hit coastline, moving back to water
14:08:15 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:08:15 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:15 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:15 DEBUG opendrift.models.physics_methods:828: Advecting 36 of 3958 elements above 0.100m with wind-sheared ocean current (0.007920 m/s - 0.153771 m/s)
14:08:15 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:15 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:15 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10017852794368744
14:08:15 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:15 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:15 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:15 DEBUG opendrift.models.oceandrift:582: 460 elements penetrated seafloor, lifting up
14:08:15 DEBUG opendrift.models.oceandrift:600: 54 elements reached seafloor, set to bottom
14:08:15 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
14:08:15 DEBUG opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
14:08:15 DEBUG opendrift.models.oceandrift:582: 350 elements penetrated seafloor, lifting up
14:08:15 DEBUG opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
14:08:15 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
14:08:15 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
14:08:15 DEBUG opendrift.models.oceandrift:582: 331 elements penetrated seafloor, lifting up
14:08:15 DEBUG opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
14:08:15 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
14:08:15 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
14:08:15 DEBUG opendrift.models.oceandrift:582: 295 elements penetrated seafloor, lifting up
14:08:15 DEBUG opendrift.models.oceandrift:600: 42 elements reached seafloor, set to bottom
14:08:15 DEBUG opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
14:08:15 DEBUG opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
14:08:15 DEBUG opendrift.models.oceandrift:582: 324 elements penetrated seafloor, lifting up
14:08:15 DEBUG opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
14:08:15 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
14:08:15 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
14:08:15 DEBUG opendrift.models.oceandrift:582: 288 elements penetrated seafloor, lifting up
14:08:15 DEBUG opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
14:08:15 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
14:08:15 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
14:08:15 DEBUG opendrift.models.oceandrift:582: 285 elements penetrated seafloor, lifting up
14:08:15 DEBUG opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
14:08:15 DEBUG opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
14:08:15 DEBUG opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
14:08:15 DEBUG opendrift.models.oceandrift:582: 282 elements penetrated seafloor, lifting up
14:08:15 DEBUG opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
14:08:15 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
14:08:15 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
14:08:15 DEBUG opendrift.models.oceandrift:582: 280 elements penetrated seafloor, lifting up
14:08:15 DEBUG opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
14:08:15 DEBUG opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
14:08:15 DEBUG opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
14:08:15 DEBUG opendrift.models.oceandrift:582: 266 elements penetrated seafloor, lifting up
14:08:15 DEBUG opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
14:08:15 DEBUG opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
14:08:15 DEBUG opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
14:08:15 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:15 DEBUG opendrift.models.basemodel:2945: 3958 active elements (0 deactivated)
14:08:15 DEBUG opendrift.models.basemodel:1658: to be seeded: 6042, already seeded 3958
14:08:15 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:08:15 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:15 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:15 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:15 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:15 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:15 DEBUG opendrift.models.basemodel:1253: Data needed for 3993 elements
14:08:15 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:15 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 09:00:00 (before)
2023-09-02 10:00:00 (after)
14:08:15 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 09:00:00) in space (linearNDFast)
14:08:15 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:15 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:15 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:15 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:15 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:15 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:15 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4213 (max)
14:08:15 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:15 DEBUG opendrift.models.basemodel:1527: 3993 active elements
14:08:15 DEBUG opendrift.models.basemodel:1538: 59.09894911730994 <- latitude -> 59.18809531604521
14:08:15 DEBUG opendrift.models.basemodel:1543: 10.923791508833698 <- longitude -> 11.041061487386749
14:08:15 DEBUG opendrift.models.basemodel:1548: -15.39639591217041 <- z -> 0.0
14:08:15 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:15 DEBUG opendrift.models.basemodel:836: Lifting 306 elements to seafloor.
14:08:15 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:15 INFO opendrift.models.basemodel:2882: 2023-09-02 09:06:21.121579 - step 115 of 216 - 3993 active elements (0 deactivated)
14:08:15 DEBUG opendrift.models.basemodel:2888: 6007 elements scheduled.
14:08:15 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:15 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:15 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:15 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:15 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:15 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:15 DEBUG opendrift.models.basemodel:1253: Data needed for 3993 elements
14:08:15 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:15 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:15 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:15 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:15 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:15 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:15 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:15 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:15 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:15 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:15 DEBUG opendrift.models.basemodel:1253: Data needed for 3993 elements
14:08:15 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:15 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 09:00:00 (before)
2023-09-02 10:00:00 (after)
14:08:17 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:17 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:17 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:17 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:17 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:17 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:17 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x22x6) for time after (2023-09-02 10:00:00)
14:08:17 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 09:00:00) in space (linearNDFast)
14:08:17 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:17 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 10:00:00) in space (linearNDFast)
14:08:17 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2269 elements, expanding data 1
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2269 elements, expanding data 1
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2344 elements, expanding data 1
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 175 elements, expanding data 2
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 3
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2344 elements, expanding data 1
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 175 elements, expanding data 2
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 3
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2344 elements, expanding data 1
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 175 elements, expanding data 2
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 3
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2344 elements, expanding data 1
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 175 elements, expanding data 2
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 3
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2344 elements, expanding data 1
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 175 elements, expanding data 2
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 3
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2344 elements, expanding data 1
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 175 elements, expanding data 2
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 3
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3224 elements, expanding data 1
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1250 elements, expanding data 2
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3224 elements, expanding data 1
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1250 elements, expanding data 2
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3224 elements, expanding data 1
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1250 elements, expanding data 2
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3224 elements, expanding data 1
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1250 elements, expanding data 2
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3224 elements, expanding data 1
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1250 elements, expanding data 2
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3224 elements, expanding data 1
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1250 elements, expanding data 2
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2269 elements, expanding data 1
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2269 elements, expanding data 1
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2269 elements, expanding data 1
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2269 elements, expanding data 1
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2269 elements, expanding data 1
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2269 elements, expanding data 1
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
14:08:17 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 09:00:00, weight 0.89) and
after (2023-09-02 10:00:00, weight 0.11) in time
14:08:17 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.076219061181405 and -58.958949066482994 degrees.
14:08:17 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.076219061181405 and -58.958949066482994 degrees.
14:08:17 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:17 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:17 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:17 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:17 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:17 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:17 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.804286 (min) 1.30084 (max)
14:08:17 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.17251 (min) 0.78209 (max)
14:08:17 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.00010179 (min) 0.00061012 (max)
14:08:17 DEBUG opendrift.models.basemodel:1524: x_wind: -6.7382 (min) 9.16985 (max)
14:08:17 DEBUG opendrift.models.basemodel:1524: y_wind: -10.6605 (min) 3.60789 (max)
14:08:17 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:17 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:17 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:17 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:17 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:17 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:17 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:17 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4213 (max)
14:08:17 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:17 DEBUG opendrift.models.basemodel:1527: 3993 active elements
14:08:17 DEBUG opendrift.models.basemodel:1538: 59.09894911730994 <- latitude -> 59.18809531604521
14:08:17 DEBUG opendrift.models.basemodel:1543: 10.923791508833698 <- longitude -> 11.041061487386749
14:08:17 DEBUG opendrift.models.basemodel:1548: -15.39639591217041 <- z -> 0.0
14:08:17 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:17 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:17 DEBUG opendrift.models.physics_methods:1050: min: 0.065021, mean: 3.289800, max: 9.297243
14:08:17 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.065021, mean: 3.289800, max: 9.297243
14:08:17 DEBUG opendrift.models.basemodel:813: 565 elements hit coastline, moving back to water
14:08:17 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:08:17 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:17 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:17 DEBUG opendrift.models.physics_methods:828: Advecting 35 of 3993 elements above 0.100m with wind-sheared ocean current (0.011441 m/s - 0.132268 m/s)
14:08:17 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:17 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:17 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10696146610124588
14:08:17 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:17 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:17 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:17 DEBUG opendrift.models.oceandrift:582: 439 elements penetrated seafloor, lifting up
14:08:17 DEBUG opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
14:08:17 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
14:08:17 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
14:08:17 DEBUG opendrift.models.oceandrift:582: 347 elements penetrated seafloor, lifting up
14:08:17 DEBUG opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
14:08:17 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
14:08:17 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
14:08:17 DEBUG opendrift.models.oceandrift:582: 340 elements penetrated seafloor, lifting up
14:08:17 DEBUG opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
14:08:17 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
14:08:17 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
14:08:17 DEBUG opendrift.models.oceandrift:582: 335 elements penetrated seafloor, lifting up
14:08:17 DEBUG opendrift.models.oceandrift:600: 44 elements reached seafloor, set to bottom
14:08:17 DEBUG opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
14:08:17 DEBUG opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
14:08:17 DEBUG opendrift.models.oceandrift:582: 303 elements penetrated seafloor, lifting up
14:08:17 DEBUG opendrift.models.oceandrift:600: 42 elements reached seafloor, set to bottom
14:08:17 DEBUG opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
14:08:17 DEBUG opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
14:08:17 DEBUG opendrift.models.oceandrift:582: 271 elements penetrated seafloor, lifting up
14:08:17 DEBUG opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
14:08:17 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
14:08:17 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
14:08:17 DEBUG opendrift.models.oceandrift:582: 262 elements penetrated seafloor, lifting up
14:08:17 DEBUG opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
14:08:17 DEBUG opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
14:08:17 DEBUG opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
14:08:17 DEBUG opendrift.models.oceandrift:582: 280 elements penetrated seafloor, lifting up
14:08:17 DEBUG opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
14:08:17 DEBUG opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
14:08:17 DEBUG opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
14:08:17 DEBUG opendrift.models.oceandrift:582: 295 elements penetrated seafloor, lifting up
14:08:17 DEBUG opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
14:08:17 DEBUG opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
14:08:17 DEBUG opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
14:08:17 DEBUG opendrift.models.oceandrift:582: 275 elements penetrated seafloor, lifting up
14:08:17 DEBUG opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
14:08:17 DEBUG opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
14:08:17 DEBUG opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
14:08:17 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:17 DEBUG opendrift.models.basemodel:2945: 3993 active elements (0 deactivated)
14:08:17 DEBUG opendrift.models.basemodel:1658: to be seeded: 6007, already seeded 3993
14:08:17 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:08:17 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:17 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:17 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:17 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:17 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:17 DEBUG opendrift.models.basemodel:1253: Data needed for 4028 elements
14:08:17 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:17 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 09:00:00 (before)
2023-09-02 10:00:00 (after)
14:08:17 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 09:00:00) in space (linearNDFast)
14:08:17 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:17 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:17 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:17 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:17 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:17 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:17 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4919 (max)
14:08:17 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:17 DEBUG opendrift.models.basemodel:1527: 4028 active elements
14:08:17 DEBUG opendrift.models.basemodel:1538: 59.09920017559817 <- latitude -> 59.18922922503737
14:08:17 DEBUG opendrift.models.basemodel:1543: 10.92718346115167 <- longitude -> 11.040912470417675
14:08:17 DEBUG opendrift.models.basemodel:1548: -14.593706106164746 <- z -> 0.0
14:08:17 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:17 DEBUG opendrift.models.basemodel:836: Lifting 297 elements to seafloor.
14:08:17 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:17 INFO opendrift.models.basemodel:2882: 2023-09-02 09:16:21.121579 - step 116 of 216 - 4028 active elements (0 deactivated)
14:08:17 DEBUG opendrift.models.basemodel:2888: 5972 elements scheduled.
14:08:17 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:17 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:17 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:17 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:17 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:17 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:17 DEBUG opendrift.models.basemodel:1253: Data needed for 4028 elements
14:08:17 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:17 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:17 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:17 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:17 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:17 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:17 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:17 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:17 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:17 DEBUG opendrift.models.basemodel:1253: Data needed for 4028 elements
14:08:17 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:17 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 09:00:00 (before)
2023-09-02 10:00:00 (after)
14:08:17 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:17 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:17 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:17 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:17 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:17 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:17 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x23x5) for time after (2023-09-02 10:00:00)
14:08:17 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 09:00:00) in space (linearNDFast)
14:08:17 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:17 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 10:00:00) in space (linearNDFast)
14:08:17 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2308 elements, expanding data 1
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2308 elements, expanding data 1
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2382 elements, expanding data 1
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 181 elements, expanding data 2
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 3
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2382 elements, expanding data 1
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 181 elements, expanding data 2
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 3
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2382 elements, expanding data 1
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 181 elements, expanding data 2
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 3
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2382 elements, expanding data 1
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 181 elements, expanding data 2
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 3
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2382 elements, expanding data 1
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 181 elements, expanding data 2
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 3
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3262 elements, expanding data 1
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1244 elements, expanding data 2
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3262 elements, expanding data 1
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1244 elements, expanding data 2
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3262 elements, expanding data 1
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1244 elements, expanding data 2
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3262 elements, expanding data 1
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1244 elements, expanding data 2
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3262 elements, expanding data 1
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1244 elements, expanding data 2
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2308 elements, expanding data 1
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2308 elements, expanding data 1
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2308 elements, expanding data 1
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2308 elements, expanding data 1
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2308 elements, expanding data 1
14:08:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
14:08:17 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 09:00:00, weight 0.73) and
after (2023-09-02 10:00:00, weight 0.27) in time
14:08:18 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.07282711228451 and -58.959098083229804 degrees.
14:08:18 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.07282711228451 and -58.959098083229804 degrees.
14:08:18 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:18 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:18 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:18 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:18 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:18 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:18 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.756575 (min) 1.15839 (max)
14:08:18 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.0799 (min) 0.793462 (max)
14:08:18 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000125047 (min) 0.000608149 (max)
14:08:18 DEBUG opendrift.models.basemodel:1524: x_wind: -7.70719 (min) 7.69749 (max)
14:08:18 DEBUG opendrift.models.basemodel:1524: y_wind: -9.90606 (min) 4.10388 (max)
14:08:18 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:18 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:18 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:18 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:18 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:18 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:18 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:18 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4919 (max)
14:08:18 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:18 DEBUG opendrift.models.basemodel:1527: 4028 active elements
14:08:18 DEBUG opendrift.models.basemodel:1538: 59.09920017559817 <- latitude -> 59.18922922503737
14:08:18 DEBUG opendrift.models.basemodel:1543: 10.92718346115167 <- longitude -> 11.040912470417675
14:08:18 DEBUG opendrift.models.basemodel:1548: -14.593706106164746 <- z -> 0.0
14:08:18 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:18 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:18 DEBUG opendrift.models.physics_methods:1050: min: 0.051018, mean: 3.298527, max: 8.870812
14:08:18 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.051018, mean: 3.298527, max: 8.870812
14:08:18 DEBUG opendrift.models.basemodel:813: 542 elements hit coastline, moving back to water
14:08:18 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
14:08:18 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:18 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:18 DEBUG opendrift.models.physics_methods:828: Advecting 37 of 4028 elements above 0.100m with wind-sheared ocean current (0.017810 m/s - 0.148495 m/s)
14:08:18 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:18 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:18 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09737495187623978
14:08:18 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:18 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:18 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:18 DEBUG opendrift.models.oceandrift:582: 455 elements penetrated seafloor, lifting up
14:08:18 DEBUG opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
14:08:18 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
14:08:18 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
14:08:18 DEBUG opendrift.models.oceandrift:582: 350 elements penetrated seafloor, lifting up
14:08:18 DEBUG opendrift.models.oceandrift:600: 54 elements reached seafloor, set to bottom
14:08:18 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
14:08:18 DEBUG opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
14:08:18 DEBUG opendrift.models.oceandrift:582: 298 elements penetrated seafloor, lifting up
14:08:18 DEBUG opendrift.models.oceandrift:600: 40 elements reached seafloor, set to bottom
14:08:18 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
14:08:18 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
14:08:18 DEBUG opendrift.models.oceandrift:582: 292 elements penetrated seafloor, lifting up
14:08:18 DEBUG opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
14:08:18 DEBUG opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
14:08:18 DEBUG opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
14:08:18 DEBUG opendrift.models.oceandrift:582: 281 elements penetrated seafloor, lifting up
14:08:18 DEBUG opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
14:08:18 DEBUG opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
14:08:18 DEBUG opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
14:08:18 DEBUG opendrift.models.oceandrift:582: 284 elements penetrated seafloor, lifting up
14:08:18 DEBUG opendrift.models.oceandrift:600: 36 elements reached seafloor, set to bottom
14:08:18 DEBUG opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
14:08:18 DEBUG opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
14:08:18 DEBUG opendrift.models.oceandrift:582: 274 elements penetrated seafloor, lifting up
14:08:18 DEBUG opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
14:08:18 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
14:08:18 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
14:08:18 DEBUG opendrift.models.oceandrift:582: 277 elements penetrated seafloor, lifting up
14:08:18 DEBUG opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
14:08:18 DEBUG opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
14:08:18 DEBUG opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
14:08:18 DEBUG opendrift.models.oceandrift:582: 258 elements penetrated seafloor, lifting up
14:08:18 DEBUG opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
14:08:18 DEBUG opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
14:08:18 DEBUG opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
14:08:18 DEBUG opendrift.models.oceandrift:582: 259 elements penetrated seafloor, lifting up
14:08:18 DEBUG opendrift.models.oceandrift:600: 40 elements reached seafloor, set to bottom
14:08:18 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
14:08:18 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
14:08:18 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:18 DEBUG opendrift.models.basemodel:2945: 4028 active elements (0 deactivated)
14:08:18 DEBUG opendrift.models.basemodel:1658: to be seeded: 5972, already seeded 4028
14:08:18 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:08:18 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:18 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:18 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:18 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:18 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:18 DEBUG opendrift.models.basemodel:1253: Data needed for 4063 elements
14:08:18 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:18 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 09:00:00 (before)
2023-09-02 10:00:00 (after)
14:08:18 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 09:00:00) in space (linearNDFast)
14:08:18 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:18 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:18 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:18 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:18 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:18 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:18 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5671 (max)
14:08:18 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:18 DEBUG opendrift.models.basemodel:1527: 4063 active elements
14:08:18 DEBUG opendrift.models.basemodel:1538: 59.09711963969043 <- latitude -> 59.188941027290014
14:08:18 DEBUG opendrift.models.basemodel:1543: 10.926875837455762 <- longitude -> 11.042277685807282
14:08:18 DEBUG opendrift.models.basemodel:1548: -14.182886123657227 <- z -> 0.0
14:08:18 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:18 DEBUG opendrift.models.basemodel:836: Lifting 268 elements to seafloor.
14:08:18 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:18 INFO opendrift.models.basemodel:2882: 2023-09-02 09:26:21.121579 - step 117 of 216 - 4063 active elements (0 deactivated)
14:08:18 DEBUG opendrift.models.basemodel:2888: 5937 elements scheduled.
14:08:18 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:18 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:18 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:18 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:18 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:18 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:18 DEBUG opendrift.models.basemodel:1253: Data needed for 4063 elements
14:08:18 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:18 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:18 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:18 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:18 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:18 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:18 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:18 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:18 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:18 DEBUG opendrift.models.basemodel:1253: Data needed for 4063 elements
14:08:18 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:18 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 09:00:00 (before)
2023-09-02 10:00:00 (after)
14:08:18 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:18 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:18 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:18 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:18 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:18 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:18 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x23x5) for time after (2023-09-02 10:00:00)
14:08:18 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 09:00:00) in space (linearNDFast)
14:08:18 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:18 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 10:00:00) in space (linearNDFast)
14:08:18 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2325 elements, expanding data 1
14:08:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
14:08:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2325 elements, expanding data 1
14:08:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
14:08:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2403 elements, expanding data 1
14:08:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 184 elements, expanding data 2
14:08:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 3
14:08:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2403 elements, expanding data 1
14:08:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 184 elements, expanding data 2
14:08:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 3
14:08:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2403 elements, expanding data 1
14:08:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 184 elements, expanding data 2
14:08:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 3
14:08:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2403 elements, expanding data 1
14:08:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 184 elements, expanding data 2
14:08:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 3
14:08:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2403 elements, expanding data 1
14:08:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 184 elements, expanding data 2
14:08:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 3
14:08:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3271 elements, expanding data 1
14:08:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1252 elements, expanding data 2
14:08:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3271 elements, expanding data 1
14:08:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1252 elements, expanding data 2
14:08:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3271 elements, expanding data 1
14:08:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1252 elements, expanding data 2
14:08:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3271 elements, expanding data 1
14:08:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1252 elements, expanding data 2
14:08:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3271 elements, expanding data 1
14:08:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1252 elements, expanding data 2
14:08:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2325 elements, expanding data 1
14:08:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
14:08:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2325 elements, expanding data 1
14:08:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
14:08:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2325 elements, expanding data 1
14:08:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
14:08:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2325 elements, expanding data 1
14:08:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
14:08:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2325 elements, expanding data 1
14:08:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
14:08:18 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 09:00:00, weight 0.56) and
after (2023-09-02 10:00:00, weight 0.44) in time
14:08:18 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.073134721976466 and -58.95773286014776 degrees.
14:08:18 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.073134721976466 and -58.95773286014776 degrees.
14:08:18 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:18 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:18 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:18 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:18 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:18 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:18 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.829893 (min) 1.20903 (max)
14:08:18 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.07655 (min) 0.773372 (max)
14:08:18 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.00014504 (min) 0.000648585 (max)
14:08:18 DEBUG opendrift.models.basemodel:1524: x_wind: -6.91666 (min) 7.53613 (max)
14:08:18 DEBUG opendrift.models.basemodel:1524: y_wind: -10.979 (min) 3.57429 (max)
14:08:18 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:18 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:18 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:18 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:18 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:18 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:18 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:18 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5671 (max)
14:08:18 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:18 DEBUG opendrift.models.basemodel:1527: 4063 active elements
14:08:18 DEBUG opendrift.models.basemodel:1538: 59.09711963969043 <- latitude -> 59.188941027290014
14:08:18 DEBUG opendrift.models.basemodel:1543: 10.926875837455762 <- longitude -> 11.042277685807282
14:08:18 DEBUG opendrift.models.basemodel:1548: -14.172842979431152 <- z -> 0.0
14:08:18 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:18 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:18 DEBUG opendrift.models.physics_methods:1050: min: 0.066065, mean: 3.286071, max: 9.433212
14:08:18 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.066065, mean: 3.286071, max: 9.433212
14:08:18 DEBUG opendrift.models.basemodel:813: 531 elements hit coastline, moving back to water
14:08:18 DEBUG opendrift.models.basemodel:836: Lifting 119 elements to seafloor.
14:08:18 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:18 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:18 DEBUG opendrift.models.physics_methods:828: Advecting 35 of 4063 elements above 0.100m with wind-sheared ocean current (0.012718 m/s - 0.171219 m/s)
14:08:18 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:18 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:18 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.1101127382493782
14:08:18 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:18 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:18 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:18 DEBUG opendrift.models.oceandrift:582: 454 elements penetrated seafloor, lifting up
14:08:18 DEBUG opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
14:08:18 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
14:08:18 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
14:08:18 DEBUG opendrift.models.oceandrift:582: 378 elements penetrated seafloor, lifting up
14:08:18 DEBUG opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
14:08:18 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
14:08:18 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
14:08:18 DEBUG opendrift.models.oceandrift:582: 330 elements penetrated seafloor, lifting up
14:08:18 DEBUG opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
14:08:18 DEBUG opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
14:08:18 DEBUG opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
14:08:18 DEBUG opendrift.models.oceandrift:582: 338 elements penetrated seafloor, lifting up
14:08:18 DEBUG opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
14:08:18 DEBUG opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
14:08:18 DEBUG opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
14:08:18 DEBUG opendrift.models.oceandrift:582: 309 elements penetrated seafloor, lifting up
14:08:18 DEBUG opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
14:08:18 DEBUG opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
14:08:18 DEBUG opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
14:08:18 DEBUG opendrift.models.oceandrift:582: 293 elements penetrated seafloor, lifting up
14:08:18 DEBUG opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
14:08:18 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
14:08:18 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
14:08:18 DEBUG opendrift.models.oceandrift:582: 274 elements penetrated seafloor, lifting up
14:08:18 DEBUG opendrift.models.oceandrift:600: 44 elements reached seafloor, set to bottom
14:08:18 DEBUG opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
14:08:18 DEBUG opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
14:08:18 DEBUG opendrift.models.oceandrift:582: 288 elements penetrated seafloor, lifting up
14:08:18 DEBUG opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
14:08:18 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
14:08:18 DEBUG opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
14:08:18 DEBUG opendrift.models.oceandrift:582: 263 elements penetrated seafloor, lifting up
14:08:18 DEBUG opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
14:08:18 DEBUG opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
14:08:18 DEBUG opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
14:08:18 DEBUG opendrift.models.oceandrift:582: 262 elements penetrated seafloor, lifting up
14:08:18 DEBUG opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
14:08:18 DEBUG opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
14:08:18 DEBUG opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
14:08:18 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:18 DEBUG opendrift.models.basemodel:2945: 4063 active elements (0 deactivated)
14:08:18 DEBUG opendrift.models.basemodel:1658: to be seeded: 5937, already seeded 4063
14:08:18 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:08:18 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:18 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:18 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:18 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:18 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:18 DEBUG opendrift.models.basemodel:1253: Data needed for 4097 elements
14:08:18 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:18 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 09:00:00 (before)
2023-09-02 10:00:00 (after)
14:08:18 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 09:00:00) in space (linearNDFast)
14:08:18 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:18 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:18 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:18 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:18 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:18 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:18 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5309 (max)
14:08:18 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:18 DEBUG opendrift.models.basemodel:1527: 4097 active elements
14:08:18 DEBUG opendrift.models.basemodel:1538: 59.098138128739514 <- latitude -> 59.188225319969575
14:08:18 DEBUG opendrift.models.basemodel:1543: 10.92487569166689 <- longitude -> 11.04361045904207
14:08:18 DEBUG opendrift.models.basemodel:1548: -14.499846687316895 <- z -> 0.0
14:08:18 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:18 DEBUG opendrift.models.basemodel:836: Lifting 270 elements to seafloor.
14:08:18 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:18 INFO opendrift.models.basemodel:2882: 2023-09-02 09:36:21.121579 - step 118 of 216 - 4097 active elements (0 deactivated)
14:08:18 DEBUG opendrift.models.basemodel:2888: 5903 elements scheduled.
14:08:18 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:18 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:18 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:18 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:18 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:18 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:18 DEBUG opendrift.models.basemodel:1253: Data needed for 4097 elements
14:08:18 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:18 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:18 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:18 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:18 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:18 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:18 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:18 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:18 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:18 DEBUG opendrift.models.basemodel:1253: Data needed for 4097 elements
14:08:18 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:18 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 09:00:00 (before)
2023-09-02 10:00:00 (after)
14:08:19 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:19 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:19 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:19 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:19 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:19 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:19 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x23x5) for time after (2023-09-02 10:00:00)
14:08:19 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 09:00:00) in space (linearNDFast)
14:08:19 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:19 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 10:00:00) in space (linearNDFast)
14:08:19 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2362 elements, expanding data 1
14:08:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
14:08:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2362 elements, expanding data 1
14:08:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
14:08:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2448 elements, expanding data 1
14:08:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 193 elements, expanding data 2
14:08:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 3
14:08:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2448 elements, expanding data 1
14:08:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 193 elements, expanding data 2
14:08:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 3
14:08:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2448 elements, expanding data 1
14:08:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 193 elements, expanding data 2
14:08:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 3
14:08:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2448 elements, expanding data 1
14:08:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 193 elements, expanding data 2
14:08:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 3
14:08:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2448 elements, expanding data 1
14:08:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 193 elements, expanding data 2
14:08:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 3
14:08:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3329 elements, expanding data 1
14:08:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1271 elements, expanding data 2
14:08:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3329 elements, expanding data 1
14:08:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1271 elements, expanding data 2
14:08:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3329 elements, expanding data 1
14:08:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1271 elements, expanding data 2
14:08:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3329 elements, expanding data 1
14:08:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1271 elements, expanding data 2
14:08:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3329 elements, expanding data 1
14:08:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1271 elements, expanding data 2
14:08:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2362 elements, expanding data 1
14:08:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
14:08:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2362 elements, expanding data 1
14:08:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
14:08:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2362 elements, expanding data 1
14:08:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
14:08:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2362 elements, expanding data 1
14:08:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
14:08:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2362 elements, expanding data 1
14:08:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
14:08:19 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 09:00:00, weight 0.39) and
after (2023-09-02 10:00:00, weight 0.61) in time
14:08:19 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.075134869521065 and -58.95640008868619 degrees.
14:08:19 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.075134869521065 and -58.95640008868619 degrees.
14:08:19 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:19 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:19 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:19 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:19 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:19 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:19 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.720366 (min) 1.15711 (max)
14:08:19 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.06684 (min) 0.753667 (max)
14:08:19 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000173499 (min) 0.00056327 (max)
14:08:19 DEBUG opendrift.models.basemodel:1524: x_wind: -7.664 (min) 6.94149 (max)
14:08:19 DEBUG opendrift.models.basemodel:1524: y_wind: -9.51699 (min) 4.10362 (max)
14:08:19 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:19 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:19 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:19 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:19 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:19 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:19 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:19 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5308 (max)
14:08:19 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:19 DEBUG opendrift.models.basemodel:1527: 4097 active elements
14:08:19 DEBUG opendrift.models.basemodel:1538: 59.098138128739514 <- latitude -> 59.188225319969575
14:08:19 DEBUG opendrift.models.basemodel:1543: 10.92487569166689 <- longitude -> 11.04361045904207
14:08:19 DEBUG opendrift.models.basemodel:1548: -14.499846687316895 <- z -> 0.0
14:08:19 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:19 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:19 DEBUG opendrift.models.physics_methods:1050: min: 0.079014, mean: 3.222390, max: 8.315446
14:08:19 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.079014, mean: 3.222390, max: 8.315446
14:08:19 DEBUG opendrift.models.basemodel:813: 589 elements hit coastline, moving back to water
14:08:19 DEBUG opendrift.models.basemodel:836: Lifting 116 elements to seafloor.
14:08:19 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:19 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:19 DEBUG opendrift.models.physics_methods:828: Advecting 39 of 4097 elements above 0.100m with wind-sheared ocean current (0.001524 m/s - 0.141872 m/s)
14:08:19 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:19 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:19 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08556461105449677
14:08:19 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:19 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:19 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:19 DEBUG opendrift.models.oceandrift:582: 456 elements penetrated seafloor, lifting up
14:08:19 DEBUG opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
14:08:19 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
14:08:19 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
14:08:19 DEBUG opendrift.models.oceandrift:582: 376 elements penetrated seafloor, lifting up
14:08:19 DEBUG opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
14:08:19 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
14:08:19 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
14:08:19 DEBUG opendrift.models.oceandrift:582: 331 elements penetrated seafloor, lifting up
14:08:19 DEBUG opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
14:08:19 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
14:08:19 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
14:08:19 DEBUG opendrift.models.oceandrift:582: 302 elements penetrated seafloor, lifting up
14:08:19 DEBUG opendrift.models.oceandrift:600: 52 elements reached seafloor, set to bottom
14:08:19 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
14:08:19 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
14:08:19 DEBUG opendrift.models.oceandrift:582: 293 elements penetrated seafloor, lifting up
14:08:19 DEBUG opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
14:08:19 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
14:08:19 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
14:08:19 DEBUG opendrift.models.oceandrift:582: 312 elements penetrated seafloor, lifting up
14:08:19 DEBUG opendrift.models.oceandrift:600: 42 elements reached seafloor, set to bottom
14:08:19 DEBUG opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
14:08:19 DEBUG opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
14:08:19 DEBUG opendrift.models.oceandrift:582: 254 elements penetrated seafloor, lifting up
14:08:19 DEBUG opendrift.models.oceandrift:600: 40 elements reached seafloor, set to bottom
14:08:19 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
14:08:19 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
14:08:19 DEBUG opendrift.models.oceandrift:582: 281 elements penetrated seafloor, lifting up
14:08:19 DEBUG opendrift.models.oceandrift:600: 36 elements reached seafloor, set to bottom
14:08:19 DEBUG opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
14:08:19 DEBUG opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
14:08:19 DEBUG opendrift.models.oceandrift:582: 291 elements penetrated seafloor, lifting up
14:08:19 DEBUG opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
14:08:19 DEBUG opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
14:08:19 DEBUG opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
14:08:19 DEBUG opendrift.models.oceandrift:582: 281 elements penetrated seafloor, lifting up
14:08:19 DEBUG opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
14:08:19 DEBUG opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
14:08:19 DEBUG opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
14:08:19 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:19 DEBUG opendrift.models.basemodel:2945: 4097 active elements (0 deactivated)
14:08:19 DEBUG opendrift.models.basemodel:1658: to be seeded: 5903, already seeded 4097
14:08:19 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:08:19 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:19 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:19 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:19 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:19 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:19 DEBUG opendrift.models.basemodel:1253: Data needed for 4132 elements
14:08:19 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:19 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 09:00:00 (before)
2023-09-02 10:00:00 (after)
14:08:19 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 09:00:00) in space (linearNDFast)
14:08:19 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:19 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:19 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:19 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:19 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:19 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:19 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.565 (max)
14:08:19 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:19 DEBUG opendrift.models.basemodel:1527: 4132 active elements
14:08:19 DEBUG opendrift.models.basemodel:1538: 59.09707675681632 <- latitude -> 59.18743245651842
14:08:19 DEBUG opendrift.models.basemodel:1543: 10.921964563821279 <- longitude -> 11.044238208395134
14:08:19 DEBUG opendrift.models.basemodel:1548: -14.585905303955078 <- z -> 0.0
14:08:19 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:19 DEBUG opendrift.models.basemodel:836: Lifting 300 elements to seafloor.
14:08:19 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:19 INFO opendrift.models.basemodel:2882: 2023-09-02 09:46:21.121579 - step 119 of 216 - 4132 active elements (0 deactivated)
14:08:19 DEBUG opendrift.models.basemodel:2888: 5868 elements scheduled.
14:08:19 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:19 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:19 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:19 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:19 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:19 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:19 DEBUG opendrift.models.basemodel:1253: Data needed for 4132 elements
14:08:19 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:19 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:19 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:19 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:19 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:19 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:19 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:19 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:19 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:19 DEBUG opendrift.models.basemodel:1253: Data needed for 4132 elements
14:08:19 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:19 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 09:00:00 (before)
2023-09-02 10:00:00 (after)
14:08:20 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:20 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:20 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:20 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:20 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:20 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:20 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x23x5) for time after (2023-09-02 10:00:00)
14:08:20 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 09:00:00) in space (linearNDFast)
14:08:20 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:20 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 10:00:00) in space (linearNDFast)
14:08:20 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2410 elements, expanding data 1
14:08:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
14:08:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2410 elements, expanding data 1
14:08:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
14:08:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2486 elements, expanding data 1
14:08:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 190 elements, expanding data 2
14:08:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 3
14:08:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2486 elements, expanding data 1
14:08:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 190 elements, expanding data 2
14:08:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 3
14:08:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2486 elements, expanding data 1
14:08:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 190 elements, expanding data 2
14:08:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 3
14:08:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2486 elements, expanding data 1
14:08:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 190 elements, expanding data 2
14:08:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 3
14:08:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2486 elements, expanding data 1
14:08:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 190 elements, expanding data 2
14:08:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 3
14:08:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3352 elements, expanding data 1
14:08:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1293 elements, expanding data 2
14:08:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3352 elements, expanding data 1
14:08:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1293 elements, expanding data 2
14:08:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3352 elements, expanding data 1
14:08:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1293 elements, expanding data 2
14:08:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3352 elements, expanding data 1
14:08:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1293 elements, expanding data 2
14:08:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3352 elements, expanding data 1
14:08:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1293 elements, expanding data 2
14:08:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2410 elements, expanding data 1
14:08:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
14:08:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2410 elements, expanding data 1
14:08:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
14:08:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2410 elements, expanding data 1
14:08:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
14:08:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2410 elements, expanding data 1
14:08:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
14:08:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2410 elements, expanding data 1
14:08:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
14:08:20 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 09:00:00, weight 0.23) and
after (2023-09-02 10:00:00, weight 0.77) in time
14:08:20 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.078046005514345 and -58.95577234953536 degrees.
14:08:20 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.078046005514345 and -58.95577234953536 degrees.
14:08:20 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:20 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:20 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:20 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:20 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:20 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:20 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.808667 (min) 1.18673 (max)
14:08:20 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.924782 (min) 0.890188 (max)
14:08:20 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000176832 (min) 0.00064744 (max)
14:08:20 DEBUG opendrift.models.basemodel:1524: x_wind: -6.38585 (min) 6.92316 (max)
14:08:20 DEBUG opendrift.models.basemodel:1524: y_wind: -9.99067 (min) 4.5212 (max)
14:08:20 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:20 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:20 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:20 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:20 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:20 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:20 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:20 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.565 (max)
14:08:20 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:20 DEBUG opendrift.models.basemodel:1527: 4132 active elements
14:08:20 DEBUG opendrift.models.basemodel:1538: 59.09707675681632 <- latitude -> 59.18743245651842
14:08:20 DEBUG opendrift.models.basemodel:1543: 10.921964563821279 <- longitude -> 11.044238208395134
14:08:20 DEBUG opendrift.models.basemodel:1548: -14.408768653869629 <- z -> 0.0
14:08:20 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:20 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:20 DEBUG opendrift.models.physics_methods:1050: min: 0.085569, mean: 3.231224, max: 8.739423
14:08:20 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.085569, mean: 3.231224, max: 8.739423
14:08:20 DEBUG opendrift.models.basemodel:813: 578 elements hit coastline, moving back to water
14:08:20 DEBUG opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
14:08:20 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:20 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:20 DEBUG opendrift.models.physics_methods:828: Advecting 39 of 4132 elements above 0.100m with wind-sheared ocean current (0.002998 m/s - 0.175860 m/s)
14:08:20 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:20 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:20 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09451195665224074
14:08:20 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:20 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:20 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:20 DEBUG opendrift.models.oceandrift:582: 453 elements penetrated seafloor, lifting up
14:08:20 DEBUG opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
14:08:20 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
14:08:20 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
14:08:20 DEBUG opendrift.models.oceandrift:582: 326 elements penetrated seafloor, lifting up
14:08:20 DEBUG opendrift.models.oceandrift:600: 63 elements reached seafloor, set to bottom
14:08:20 DEBUG opendrift.models.basemodel:836: Lifting 63 elements to seafloor.
14:08:20 DEBUG opendrift.models.sedimentdrift:112: Settling 63 elements at seafloor
14:08:20 DEBUG opendrift.models.oceandrift:582: 331 elements penetrated seafloor, lifting up
14:08:20 DEBUG opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
14:08:20 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
14:08:20 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
14:08:20 DEBUG opendrift.models.oceandrift:582: 294 elements penetrated seafloor, lifting up
14:08:20 DEBUG opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
14:08:20 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
14:08:20 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
14:08:20 DEBUG opendrift.models.oceandrift:582: 260 elements penetrated seafloor, lifting up
14:08:20 DEBUG opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
14:08:20 DEBUG opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
14:08:20 DEBUG opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
14:08:20 DEBUG opendrift.models.oceandrift:582: 282 elements penetrated seafloor, lifting up
14:08:20 DEBUG opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
14:08:20 DEBUG opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
14:08:20 DEBUG opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
14:08:20 DEBUG opendrift.models.oceandrift:582: 289 elements penetrated seafloor, lifting up
14:08:20 DEBUG opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
14:08:20 DEBUG opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
14:08:20 DEBUG opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
14:08:20 DEBUG opendrift.models.oceandrift:582: 273 elements penetrated seafloor, lifting up
14:08:20 DEBUG opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
14:08:20 DEBUG opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
14:08:20 DEBUG opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
14:08:20 DEBUG opendrift.models.oceandrift:582: 266 elements penetrated seafloor, lifting up
14:08:20 DEBUG opendrift.models.oceandrift:600: 52 elements reached seafloor, set to bottom
14:08:20 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
14:08:20 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
14:08:20 DEBUG opendrift.models.oceandrift:582: 251 elements penetrated seafloor, lifting up
14:08:20 DEBUG opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
14:08:20 DEBUG opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
14:08:20 DEBUG opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
14:08:20 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:20 DEBUG opendrift.models.basemodel:2945: 4132 active elements (0 deactivated)
14:08:20 DEBUG opendrift.models.basemodel:1658: to be seeded: 5868, already seeded 4132
14:08:20 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:08:20 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:20 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:20 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:20 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:20 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:20 DEBUG opendrift.models.basemodel:1253: Data needed for 4167 elements
14:08:20 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:20 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 09:00:00 (before)
2023-09-02 10:00:00 (after)
14:08:20 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 09:00:00) in space (linearNDFast)
14:08:20 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:20 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:20 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:20 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:20 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:20 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:20 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.6122 (max)
14:08:20 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:20 DEBUG opendrift.models.basemodel:1527: 4167 active elements
14:08:20 DEBUG opendrift.models.basemodel:1538: 59.095950260909774 <- latitude -> 59.18819608054498
14:08:20 DEBUG opendrift.models.basemodel:1543: 10.920814253815987 <- longitude -> 11.0403536327187
14:08:20 DEBUG opendrift.models.basemodel:1548: -15.555023422241211 <- z -> 0.0
14:08:20 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:20 DEBUG opendrift.models.basemodel:836: Lifting 322 elements to seafloor.
14:08:20 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:20 INFO opendrift.models.basemodel:2882: 2023-09-02 09:56:21.121579 - step 120 of 216 - 4167 active elements (0 deactivated)
14:08:20 DEBUG opendrift.models.basemodel:2888: 5833 elements scheduled.
14:08:20 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:20 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:20 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:20 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:20 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:20 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:20 DEBUG opendrift.models.basemodel:1253: Data needed for 4167 elements
14:08:20 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:20 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:20 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:20 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:20 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:20 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:20 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:20 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:20 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:20 DEBUG opendrift.models.basemodel:1253: Data needed for 4167 elements
14:08:20 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:20 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 09:00:00 (before)
2023-09-02 10:00:00 (after)
14:08:21 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:21 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:21 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:21 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:21 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:21 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:21 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x23x6) for time after (2023-09-02 10:00:00)
14:08:21 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 09:00:00) in space (linearNDFast)
14:08:21 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:21 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 10:00:00) in space (linearNDFast)
14:08:21 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2436 elements, expanding data 1
14:08:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
14:08:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2436 elements, expanding data 1
14:08:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
14:08:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2518 elements, expanding data 1
14:08:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 194 elements, expanding data 2
14:08:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 3
14:08:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2518 elements, expanding data 1
14:08:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 194 elements, expanding data 2
14:08:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 3
14:08:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2518 elements, expanding data 1
14:08:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 194 elements, expanding data 2
14:08:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 3
14:08:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2518 elements, expanding data 1
14:08:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 194 elements, expanding data 2
14:08:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 3
14:08:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2518 elements, expanding data 1
14:08:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 194 elements, expanding data 2
14:08:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 3
14:08:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2518 elements, expanding data 1
14:08:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 194 elements, expanding data 2
14:08:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 3
14:08:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3386 elements, expanding data 1
14:08:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1325 elements, expanding data 2
14:08:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3386 elements, expanding data 1
14:08:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1325 elements, expanding data 2
14:08:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3386 elements, expanding data 1
14:08:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1325 elements, expanding data 2
14:08:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3386 elements, expanding data 1
14:08:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1325 elements, expanding data 2
14:08:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3386 elements, expanding data 1
14:08:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1325 elements, expanding data 2
14:08:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3386 elements, expanding data 1
14:08:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1325 elements, expanding data 2
14:08:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2436 elements, expanding data 1
14:08:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
14:08:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2436 elements, expanding data 1
14:08:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
14:08:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2436 elements, expanding data 1
14:08:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
14:08:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2436 elements, expanding data 1
14:08:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
14:08:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2436 elements, expanding data 1
14:08:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
14:08:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2436 elements, expanding data 1
14:08:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
14:08:21 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 09:00:00, weight 0.06) and
after (2023-09-02 10:00:00, weight 0.94) in time
14:08:21 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.07919631533301 and -58.95965692129286 degrees.
14:08:21 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.07919631533301 and -58.95965692129286 degrees.
14:08:21 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:21 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:21 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:21 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:21 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:21 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:21 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.685021 (min) 1.10558 (max)
14:08:21 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.01606 (min) 0.906342 (max)
14:08:21 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000219689 (min) 0.000650054 (max)
14:08:21 DEBUG opendrift.models.basemodel:1524: x_wind: -6.65326 (min) 6.87627 (max)
14:08:21 DEBUG opendrift.models.basemodel:1524: y_wind: -9.96227 (min) 4.28719 (max)
14:08:21 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:21 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:21 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:21 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:21 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:21 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:21 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:21 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.6122 (max)
14:08:21 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:21 DEBUG opendrift.models.basemodel:1527: 4167 active elements
14:08:21 DEBUG opendrift.models.basemodel:1538: 59.095950260909774 <- latitude -> 59.18819608054498
14:08:21 DEBUG opendrift.models.basemodel:1543: 10.920814253815987 <- longitude -> 11.0403536327187
14:08:21 DEBUG opendrift.models.basemodel:1548: -15.555023422241211 <- z -> 0.0
14:08:21 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:21 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:21 DEBUG opendrift.models.physics_methods:1050: min: 0.022260, mean: 3.261360, max: 9.999899
14:08:21 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.022260, mean: 3.261360, max: 9.999899
14:08:21 DEBUG opendrift.models.basemodel:813: 606 elements hit coastline, moving back to water
14:08:21 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:08:21 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:21 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:21 DEBUG opendrift.models.physics_methods:828: Advecting 37 of 4167 elements above 0.100m with wind-sheared ocean current (0.002755 m/s - 0.188154 m/s)
14:08:21 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:21 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:21 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.12373939318473814
14:08:21 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:21 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:21 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:21 DEBUG opendrift.models.oceandrift:582: 500 elements penetrated seafloor, lifting up
14:08:21 DEBUG opendrift.models.oceandrift:600: 58 elements reached seafloor, set to bottom
14:08:21 DEBUG opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
14:08:21 DEBUG opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
14:08:21 DEBUG opendrift.models.oceandrift:582: 345 elements penetrated seafloor, lifting up
14:08:21 DEBUG opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
14:08:21 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
14:08:21 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
14:08:21 DEBUG opendrift.models.oceandrift:582: 330 elements penetrated seafloor, lifting up
14:08:21 DEBUG opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
14:08:21 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
14:08:21 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
14:08:21 DEBUG opendrift.models.oceandrift:582: 309 elements penetrated seafloor, lifting up
14:08:21 DEBUG opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
14:08:21 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
14:08:21 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
14:08:21 DEBUG opendrift.models.oceandrift:582: 299 elements penetrated seafloor, lifting up
14:08:21 DEBUG opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
14:08:21 DEBUG opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
14:08:21 DEBUG opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
14:08:21 DEBUG opendrift.models.oceandrift:582: 296 elements penetrated seafloor, lifting up
14:08:21 DEBUG opendrift.models.oceandrift:600: 40 elements reached seafloor, set to bottom
14:08:21 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
14:08:21 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
14:08:21 DEBUG opendrift.models.oceandrift:582: 300 elements penetrated seafloor, lifting up
14:08:21 DEBUG opendrift.models.oceandrift:600: 44 elements reached seafloor, set to bottom
14:08:21 DEBUG opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
14:08:21 DEBUG opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
14:08:21 DEBUG opendrift.models.oceandrift:582: 268 elements penetrated seafloor, lifting up
14:08:21 DEBUG opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
14:08:21 DEBUG opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
14:08:21 DEBUG opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
14:08:21 DEBUG opendrift.models.oceandrift:582: 260 elements penetrated seafloor, lifting up
14:08:21 DEBUG opendrift.models.oceandrift:600: 36 elements reached seafloor, set to bottom
14:08:21 DEBUG opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
14:08:21 DEBUG opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
14:08:21 DEBUG opendrift.models.oceandrift:582: 246 elements penetrated seafloor, lifting up
14:08:21 DEBUG opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
14:08:21 DEBUG opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
14:08:21 DEBUG opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
14:08:21 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:21 DEBUG opendrift.models.basemodel:2945: 4167 active elements (0 deactivated)
14:08:21 DEBUG opendrift.models.basemodel:1658: to be seeded: 5833, already seeded 4167
14:08:21 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:08:21 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:21 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:21 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:21 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:21 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:21 DEBUG opendrift.models.basemodel:1253: Data needed for 4201 elements
14:08:21 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:21 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 10:00:00 (before)
2023-09-02 11:00:00 (after)
14:08:21 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 10:00:00) in space (linearNDFast)
14:08:21 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:21 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:21 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:21 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:21 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:21 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:21 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.6137 (max)
14:08:21 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:21 DEBUG opendrift.models.basemodel:1527: 4201 active elements
14:08:21 DEBUG opendrift.models.basemodel:1538: 59.09568609688756 <- latitude -> 59.18774272171554
14:08:21 DEBUG opendrift.models.basemodel:1543: 10.921490396781417 <- longitude -> 11.042106023211092
14:08:21 DEBUG opendrift.models.basemodel:1548: -15.438048229877806 <- z -> 0.0
14:08:21 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:21 DEBUG opendrift.models.basemodel:836: Lifting 297 elements to seafloor.
14:08:21 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:21 INFO opendrift.models.basemodel:2882: 2023-09-02 10:06:21.121579 - step 121 of 216 - 4201 active elements (0 deactivated)
14:08:21 DEBUG opendrift.models.basemodel:2888: 5799 elements scheduled.
14:08:21 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:21 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:21 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:21 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:21 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:21 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:21 DEBUG opendrift.models.basemodel:1253: Data needed for 4201 elements
14:08:21 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:21 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:21 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:21 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:21 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:21 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:21 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:21 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:21 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:21 DEBUG opendrift.models.basemodel:1253: Data needed for 4201 elements
14:08:21 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:21 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 10:00:00 (before)
2023-09-02 11:00:00 (after)
14:08:22 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:22 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:22 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:22 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:22 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:22 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:22 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x23x6) for time after (2023-09-02 11:00:00)
14:08:22 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 10:00:00) in space (linearNDFast)
14:08:22 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:22 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 11:00:00) in space (linearNDFast)
14:08:22 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2471 elements, expanding data 1
14:08:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 2
14:08:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2471 elements, expanding data 1
14:08:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 2
14:08:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2549 elements, expanding data 1
14:08:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 200 elements, expanding data 2
14:08:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 3
14:08:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2549 elements, expanding data 1
14:08:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 200 elements, expanding data 2
14:08:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 3
14:08:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2549 elements, expanding data 1
14:08:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 200 elements, expanding data 2
14:08:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 3
14:08:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2549 elements, expanding data 1
14:08:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 200 elements, expanding data 2
14:08:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 3
14:08:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2549 elements, expanding data 1
14:08:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 200 elements, expanding data 2
14:08:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 3
14:08:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2549 elements, expanding data 1
14:08:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 200 elements, expanding data 2
14:08:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 3
14:08:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3433 elements, expanding data 1
14:08:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1351 elements, expanding data 2
14:08:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3433 elements, expanding data 1
14:08:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1351 elements, expanding data 2
14:08:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3433 elements, expanding data 1
14:08:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1351 elements, expanding data 2
14:08:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3433 elements, expanding data 1
14:08:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1351 elements, expanding data 2
14:08:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3433 elements, expanding data 1
14:08:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1351 elements, expanding data 2
14:08:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3433 elements, expanding data 1
14:08:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1351 elements, expanding data 2
14:08:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2471 elements, expanding data 1
14:08:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 2
14:08:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2471 elements, expanding data 1
14:08:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 2
14:08:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2471 elements, expanding data 1
14:08:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 2
14:08:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2471 elements, expanding data 1
14:08:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 2
14:08:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2471 elements, expanding data 1
14:08:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 2
14:08:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2471 elements, expanding data 1
14:08:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 2
14:08:22 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 10:00:00, weight 0.89) and
after (2023-09-02 11:00:00, weight 0.11) in time
14:08:22 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.078520180178145 and -58.95790452052046 degrees.
14:08:22 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.078520180178145 and -58.95790452052046 degrees.
14:08:22 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:22 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:22 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:22 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:22 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:22 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:22 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.798114 (min) 1.25166 (max)
14:08:22 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.04945 (min) 0.715402 (max)
14:08:22 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000187105 (min) 0.00054138 (max)
14:08:22 DEBUG opendrift.models.basemodel:1524: x_wind: -6.93448 (min) 7.91514 (max)
14:08:22 DEBUG opendrift.models.basemodel:1524: y_wind: -10.4889 (min) 4.51119 (max)
14:08:22 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:22 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:22 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:22 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:22 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:22 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:22 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:22 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.6137 (max)
14:08:22 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:22 DEBUG opendrift.models.basemodel:1527: 4201 active elements
14:08:22 DEBUG opendrift.models.basemodel:1538: 59.09568609688756 <- latitude -> 59.18774272171554
14:08:22 DEBUG opendrift.models.basemodel:1543: 10.921490396781417 <- longitude -> 11.042106023211092
14:08:22 DEBUG opendrift.models.basemodel:1548: -15.438048229877806 <- z -> 0.0
14:08:22 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:22 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:22 DEBUG opendrift.models.physics_methods:1050: min: 0.010154, mean: 3.206357, max: 9.757725
14:08:22 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.010154, mean: 3.206357, max: 9.757725
14:08:22 DEBUG opendrift.models.basemodel:813: 594 elements hit coastline, moving back to water
14:08:22 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:08:22 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:22 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:22 DEBUG opendrift.models.physics_methods:828: Advecting 37 of 4201 elements above 0.100m with wind-sheared ocean current (0.008713 m/s - 0.156864 m/s)
14:08:22 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:22 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:22 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.11781881404741286
14:08:22 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:22 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:22 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:22 DEBUG opendrift.models.oceandrift:582: 492 elements penetrated seafloor, lifting up
14:08:22 DEBUG opendrift.models.oceandrift:600: 54 elements reached seafloor, set to bottom
14:08:22 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
14:08:22 DEBUG opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
14:08:22 DEBUG opendrift.models.oceandrift:582: 384 elements penetrated seafloor, lifting up
14:08:22 DEBUG opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
14:08:22 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
14:08:22 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
14:08:22 DEBUG opendrift.models.oceandrift:582: 357 elements penetrated seafloor, lifting up
14:08:22 DEBUG opendrift.models.oceandrift:600: 44 elements reached seafloor, set to bottom
14:08:22 DEBUG opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
14:08:22 DEBUG opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
14:08:22 DEBUG opendrift.models.oceandrift:582: 314 elements penetrated seafloor, lifting up
14:08:22 DEBUG opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
14:08:22 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
14:08:22 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
14:08:22 DEBUG opendrift.models.oceandrift:582: 291 elements penetrated seafloor, lifting up
14:08:22 DEBUG opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
14:08:22 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
14:08:22 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
14:08:22 DEBUG opendrift.models.oceandrift:582: 324 elements penetrated seafloor, lifting up
14:08:22 DEBUG opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
14:08:22 DEBUG opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
14:08:22 DEBUG opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
14:08:22 DEBUG opendrift.models.oceandrift:582: 282 elements penetrated seafloor, lifting up
14:08:22 DEBUG opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
14:08:22 DEBUG opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
14:08:22 DEBUG opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
14:08:22 DEBUG opendrift.models.oceandrift:582: 280 elements penetrated seafloor, lifting up
14:08:22 DEBUG opendrift.models.oceandrift:600: 44 elements reached seafloor, set to bottom
14:08:22 DEBUG opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
14:08:22 DEBUG opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
14:08:22 DEBUG opendrift.models.oceandrift:582: 302 elements penetrated seafloor, lifting up
14:08:22 DEBUG opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
14:08:22 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
14:08:22 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
14:08:22 DEBUG opendrift.models.oceandrift:582: 283 elements penetrated seafloor, lifting up
14:08:22 DEBUG opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
14:08:22 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
14:08:22 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
14:08:22 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:22 DEBUG opendrift.models.basemodel:2945: 4201 active elements (0 deactivated)
14:08:22 DEBUG opendrift.models.basemodel:1658: to be seeded: 5799, already seeded 4201
14:08:22 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:08:22 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:22 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:22 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:22 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:22 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:22 DEBUG opendrift.models.basemodel:1253: Data needed for 4236 elements
14:08:22 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:22 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 10:00:00 (before)
2023-09-02 11:00:00 (after)
14:08:22 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 10:00:00) in space (linearNDFast)
14:08:22 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:22 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:22 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:22 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:22 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:22 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:22 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.6076 (max)
14:08:22 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:22 DEBUG opendrift.models.basemodel:1527: 4236 active elements
14:08:22 DEBUG opendrift.models.basemodel:1538: 59.096193797891615 <- latitude -> 59.189431804865094
14:08:22 DEBUG opendrift.models.basemodel:1543: 10.918741208110864 <- longitude -> 11.037893032389901
14:08:22 DEBUG opendrift.models.basemodel:1548: -14.400417556762696 <- z -> 0.0
14:08:22 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:22 DEBUG opendrift.models.basemodel:836: Lifting 317 elements to seafloor.
14:08:22 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:22 INFO opendrift.models.basemodel:2882: 2023-09-02 10:16:21.121579 - step 122 of 216 - 4236 active elements (0 deactivated)
14:08:22 DEBUG opendrift.models.basemodel:2888: 5764 elements scheduled.
14:08:22 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:22 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:22 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:22 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:22 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:22 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:22 DEBUG opendrift.models.basemodel:1253: Data needed for 4236 elements
14:08:22 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:22 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:22 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:22 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:22 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:22 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:22 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:22 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:22 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:22 DEBUG opendrift.models.basemodel:1253: Data needed for 4236 elements
14:08:22 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:22 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 10:00:00 (before)
2023-09-02 11:00:00 (after)
14:08:23 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:23 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:23 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:23 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:23 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:23 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:23 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x23x5) for time after (2023-09-02 11:00:00)
14:08:23 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 10:00:00) in space (linearNDFast)
14:08:23 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:23 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 11:00:00) in space (linearNDFast)
14:08:23 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2528 elements, expanding data 1
14:08:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 30 elements, expanding data 2
14:08:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2528 elements, expanding data 1
14:08:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 30 elements, expanding data 2
14:08:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2602 elements, expanding data 1
14:08:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 212 elements, expanding data 2
14:08:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 3
14:08:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2602 elements, expanding data 1
14:08:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 212 elements, expanding data 2
14:08:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 3
14:08:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2602 elements, expanding data 1
14:08:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 212 elements, expanding data 2
14:08:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 3
14:08:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2602 elements, expanding data 1
14:08:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 212 elements, expanding data 2
14:08:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 3
14:08:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2602 elements, expanding data 1
14:08:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 212 elements, expanding data 2
14:08:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 3
14:08:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3472 elements, expanding data 1
14:08:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1372 elements, expanding data 2
14:08:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3472 elements, expanding data 1
14:08:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1372 elements, expanding data 2
14:08:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3472 elements, expanding data 1
14:08:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1372 elements, expanding data 2
14:08:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3472 elements, expanding data 1
14:08:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1372 elements, expanding data 2
14:08:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3472 elements, expanding data 1
14:08:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1372 elements, expanding data 2
14:08:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2528 elements, expanding data 1
14:08:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 30 elements, expanding data 2
14:08:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2528 elements, expanding data 1
14:08:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 30 elements, expanding data 2
14:08:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2528 elements, expanding data 1
14:08:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 30 elements, expanding data 2
14:08:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2528 elements, expanding data 1
14:08:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 30 elements, expanding data 2
14:08:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2528 elements, expanding data 1
14:08:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 30 elements, expanding data 2
14:08:23 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 10:00:00, weight 0.73) and
after (2023-09-02 11:00:00, weight 0.27) in time
14:08:23 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.081269354649805 and -58.96211752159753 degrees.
14:08:23 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.081269354649805 and -58.96211752159753 degrees.
14:08:23 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:23 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:23 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:23 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:23 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:23 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:23 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.834785 (min) 1.05858 (max)
14:08:23 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.07147 (min) 0.794803 (max)
14:08:23 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000165901 (min) 0.000542523 (max)
14:08:23 DEBUG opendrift.models.basemodel:1524: x_wind: -6.69501 (min) 6.62891 (max)
14:08:23 DEBUG opendrift.models.basemodel:1524: y_wind: -9.33576 (min) 5.94456 (max)
14:08:23 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:23 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:23 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:23 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:23 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:23 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:23 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:23 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.6076 (max)
14:08:23 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:23 DEBUG opendrift.models.basemodel:1527: 4236 active elements
14:08:23 DEBUG opendrift.models.basemodel:1538: 59.096193797891615 <- latitude -> 59.189431804865094
14:08:23 DEBUG opendrift.models.basemodel:1543: 10.918741208110864 <- longitude -> 11.037893032389901
14:08:23 DEBUG opendrift.models.basemodel:1548: -14.400417556762696 <- z -> 0.0
14:08:23 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:23 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:23 DEBUG opendrift.models.physics_methods:1050: min: 0.011040, mean: 3.102516, max: 9.129023
14:08:23 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.011040, mean: 3.102516, max: 9.129023
14:08:23 DEBUG opendrift.models.basemodel:813: 634 elements hit coastline, moving back to water
14:08:23 DEBUG opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
14:08:23 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:23 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:23 DEBUG opendrift.models.physics_methods:828: Advecting 35 of 4236 elements above 0.100m with wind-sheared ocean current (0.016204 m/s - 0.125963 m/s)
14:08:23 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:23 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:23 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10312597764261246
14:08:23 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:23 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:23 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:23 DEBUG opendrift.models.oceandrift:582: 428 elements penetrated seafloor, lifting up
14:08:23 DEBUG opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
14:08:23 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
14:08:23 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
14:08:23 DEBUG opendrift.models.oceandrift:582: 343 elements penetrated seafloor, lifting up
14:08:23 DEBUG opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
14:08:23 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
14:08:23 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
14:08:23 DEBUG opendrift.models.oceandrift:582: 324 elements penetrated seafloor, lifting up
14:08:23 DEBUG opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
14:08:23 DEBUG opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
14:08:23 DEBUG opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
14:08:23 DEBUG opendrift.models.oceandrift:582: 314 elements penetrated seafloor, lifting up
14:08:23 DEBUG opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
14:08:23 DEBUG opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
14:08:23 DEBUG opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
14:08:23 DEBUG opendrift.models.oceandrift:582: 311 elements penetrated seafloor, lifting up
14:08:23 DEBUG opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
14:08:23 DEBUG opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
14:08:23 DEBUG opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
14:08:23 DEBUG opendrift.models.oceandrift:582: 304 elements penetrated seafloor, lifting up
14:08:23 DEBUG opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
14:08:23 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
14:08:23 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
14:08:23 DEBUG opendrift.models.oceandrift:582: 286 elements penetrated seafloor, lifting up
14:08:23 DEBUG opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
14:08:23 DEBUG opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
14:08:23 DEBUG opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
14:08:23 DEBUG opendrift.models.oceandrift:582: 269 elements penetrated seafloor, lifting up
14:08:23 DEBUG opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
14:08:23 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
14:08:23 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
14:08:23 DEBUG opendrift.models.oceandrift:582: 286 elements penetrated seafloor, lifting up
14:08:23 DEBUG opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
14:08:23 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
14:08:23 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
14:08:23 DEBUG opendrift.models.oceandrift:582: 267 elements penetrated seafloor, lifting up
14:08:23 DEBUG opendrift.models.oceandrift:600: 29 elements reached seafloor, set to bottom
14:08:23 DEBUG opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
14:08:23 DEBUG opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
14:08:23 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:23 DEBUG opendrift.models.basemodel:2945: 4236 active elements (0 deactivated)
14:08:23 DEBUG opendrift.models.basemodel:1658: to be seeded: 5764, already seeded 4236
14:08:23 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:08:23 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:23 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:23 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:23 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:23 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:23 DEBUG opendrift.models.basemodel:1253: Data needed for 4271 elements
14:08:23 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:23 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 10:00:00 (before)
2023-09-02 11:00:00 (after)
14:08:23 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 10:00:00) in space (linearNDFast)
14:08:23 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:23 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:23 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:23 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:23 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:23 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:23 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5364 (max)
14:08:23 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:23 DEBUG opendrift.models.basemodel:1527: 4271 active elements
14:08:23 DEBUG opendrift.models.basemodel:1538: 59.09802286927039 <- latitude -> 59.18822614944123
14:08:23 DEBUG opendrift.models.basemodel:1543: 10.919838366551543 <- longitude -> 11.044733035432598
14:08:23 DEBUG opendrift.models.basemodel:1548: -14.159689459166074 <- z -> 0.0
14:08:23 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:23 DEBUG opendrift.models.basemodel:836: Lifting 323 elements to seafloor.
14:08:23 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:23 INFO opendrift.models.basemodel:2882: 2023-09-02 10:26:21.121579 - step 123 of 216 - 4271 active elements (0 deactivated)
14:08:23 DEBUG opendrift.models.basemodel:2888: 5729 elements scheduled.
14:08:23 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:23 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:23 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:23 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:23 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:23 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:23 DEBUG opendrift.models.basemodel:1253: Data needed for 4271 elements
14:08:23 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:23 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:23 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:23 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:23 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:23 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:23 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:23 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:23 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:23 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:23 DEBUG opendrift.models.basemodel:1253: Data needed for 4271 elements
14:08:23 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:23 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 10:00:00 (before)
2023-09-02 11:00:00 (after)
14:08:24 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:24 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:24 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:24 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:24 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:24 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:24 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x23x5) for time after (2023-09-02 11:00:00)
14:08:24 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 10:00:00) in space (linearNDFast)
14:08:24 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:24 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 11:00:00) in space (linearNDFast)
14:08:24 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2569 elements, expanding data 1
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2569 elements, expanding data 1
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2651 elements, expanding data 1
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 211 elements, expanding data 2
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 3
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2651 elements, expanding data 1
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 211 elements, expanding data 2
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 3
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2651 elements, expanding data 1
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 211 elements, expanding data 2
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 3
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2651 elements, expanding data 1
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 211 elements, expanding data 2
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 3
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2651 elements, expanding data 1
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 211 elements, expanding data 2
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 3
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3513 elements, expanding data 1
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1414 elements, expanding data 2
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3513 elements, expanding data 1
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1414 elements, expanding data 2
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3513 elements, expanding data 1
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1414 elements, expanding data 2
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3513 elements, expanding data 1
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1414 elements, expanding data 2
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3513 elements, expanding data 1
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1414 elements, expanding data 2
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2569 elements, expanding data 1
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2569 elements, expanding data 1
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2569 elements, expanding data 1
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2569 elements, expanding data 1
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2569 elements, expanding data 1
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
14:08:24 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 10:00:00, weight 0.56) and
after (2023-09-02 11:00:00, weight 0.44) in time
14:08:24 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.08017219187946 and -58.95527751680458 degrees.
14:08:24 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.08017219187946 and -58.95527751680458 degrees.
14:08:24 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:24 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:24 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:24 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:24 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:24 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:24 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.724269 (min) 1.22356 (max)
14:08:24 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.04479 (min) 0.903259 (max)
14:08:24 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000216625 (min) 0.000635943 (max)
14:08:24 DEBUG opendrift.models.basemodel:1524: x_wind: -7.28204 (min) 7.0186 (max)
14:08:24 DEBUG opendrift.models.basemodel:1524: y_wind: -9.67336 (min) 4.19626 (max)
14:08:24 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:24 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:24 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:24 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:24 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:24 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:24 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:24 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5364 (max)
14:08:24 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:24 DEBUG opendrift.models.basemodel:1527: 4271 active elements
14:08:24 DEBUG opendrift.models.basemodel:1538: 59.09802286927039 <- latitude -> 59.18822614944123
14:08:24 DEBUG opendrift.models.basemodel:1543: 10.919838366551543 <- longitude -> 11.044733035432598
14:08:24 DEBUG opendrift.models.basemodel:1548: -14.159689459166074 <- z -> 0.0
14:08:24 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:24 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:24 DEBUG opendrift.models.physics_methods:1050: min: 0.025570, mean: 3.094456, max: 8.714742
14:08:24 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.025570, mean: 3.094456, max: 8.714742
14:08:24 DEBUG opendrift.models.basemodel:813: 623 elements hit coastline, moving back to water
14:08:24 DEBUG opendrift.models.basemodel:836: Lifting 108 elements to seafloor.
14:08:24 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:24 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:24 DEBUG opendrift.models.physics_methods:828: Advecting 36 of 4271 elements above 0.100m with wind-sheared ocean current (0.000754 m/s - 0.136812 m/s)
14:08:24 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:24 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:24 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09397890564210891
14:08:24 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:24 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:24 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:24 DEBUG opendrift.models.oceandrift:582: 448 elements penetrated seafloor, lifting up
14:08:24 DEBUG opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
14:08:24 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
14:08:24 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
14:08:24 DEBUG opendrift.models.oceandrift:582: 344 elements penetrated seafloor, lifting up
14:08:24 DEBUG opendrift.models.oceandrift:600: 60 elements reached seafloor, set to bottom
14:08:24 DEBUG opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
14:08:24 DEBUG opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
14:08:24 DEBUG opendrift.models.oceandrift:582: 334 elements penetrated seafloor, lifting up
14:08:24 DEBUG opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
14:08:24 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
14:08:24 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
14:08:24 DEBUG opendrift.models.oceandrift:582: 343 elements penetrated seafloor, lifting up
14:08:24 DEBUG opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
14:08:24 DEBUG opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
14:08:24 DEBUG opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
14:08:24 DEBUG opendrift.models.oceandrift:582: 308 elements penetrated seafloor, lifting up
14:08:24 DEBUG opendrift.models.oceandrift:600: 36 elements reached seafloor, set to bottom
14:08:24 DEBUG opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
14:08:24 DEBUG opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
14:08:24 DEBUG opendrift.models.oceandrift:582: 297 elements penetrated seafloor, lifting up
14:08:24 DEBUG opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
14:08:24 DEBUG opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
14:08:24 DEBUG opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
14:08:24 DEBUG opendrift.models.oceandrift:582: 302 elements penetrated seafloor, lifting up
14:08:24 DEBUG opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
14:08:24 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
14:08:24 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
14:08:24 DEBUG opendrift.models.oceandrift:582: 292 elements penetrated seafloor, lifting up
14:08:24 DEBUG opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
14:08:24 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
14:08:24 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
14:08:24 DEBUG opendrift.models.oceandrift:582: 266 elements penetrated seafloor, lifting up
14:08:24 DEBUG opendrift.models.oceandrift:600: 40 elements reached seafloor, set to bottom
14:08:24 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
14:08:24 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
14:08:24 DEBUG opendrift.models.oceandrift:582: 262 elements penetrated seafloor, lifting up
14:08:24 DEBUG opendrift.models.oceandrift:600: 40 elements reached seafloor, set to bottom
14:08:24 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
14:08:24 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
14:08:24 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:24 DEBUG opendrift.models.basemodel:2945: 4271 active elements (0 deactivated)
14:08:24 DEBUG opendrift.models.basemodel:1658: to be seeded: 5729, already seeded 4271
14:08:24 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:08:24 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:24 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:24 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:24 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:24 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:24 DEBUG opendrift.models.basemodel:1253: Data needed for 4306 elements
14:08:24 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:24 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 10:00:00 (before)
2023-09-02 11:00:00 (after)
14:08:24 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 10:00:00) in space (linearNDFast)
14:08:24 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:24 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:24 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:24 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:24 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:24 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:24 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5703 (max)
14:08:24 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:24 DEBUG opendrift.models.basemodel:1527: 4306 active elements
14:08:24 DEBUG opendrift.models.basemodel:1538: 59.097050092124 <- latitude -> 59.18785856074355
14:08:24 DEBUG opendrift.models.basemodel:1543: 10.918145519702062 <- longitude -> 11.044506369017896
14:08:24 DEBUG opendrift.models.basemodel:1548: -14.600164642333985 <- z -> 0.0
14:08:24 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:24 DEBUG opendrift.models.basemodel:836: Lifting 305 elements to seafloor.
14:08:24 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:24 INFO opendrift.models.basemodel:2882: 2023-09-02 10:36:21.121579 - step 124 of 216 - 4306 active elements (0 deactivated)
14:08:24 DEBUG opendrift.models.basemodel:2888: 5694 elements scheduled.
14:08:24 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:24 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:24 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:24 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:24 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:24 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:24 DEBUG opendrift.models.basemodel:1253: Data needed for 4306 elements
14:08:24 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:24 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:24 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:24 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:24 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:24 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:24 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:24 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:24 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:24 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:24 DEBUG opendrift.models.basemodel:1253: Data needed for 4306 elements
14:08:24 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:24 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 10:00:00 (before)
2023-09-02 11:00:00 (after)
14:08:25 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:25 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:25 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:25 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:25 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:25 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:25 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x23x5) for time after (2023-09-02 11:00:00)
14:08:25 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 10:00:00) in space (linearNDFast)
14:08:25 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:25 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 11:00:00) in space (linearNDFast)
14:08:25 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2584 elements, expanding data 1
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 2
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2584 elements, expanding data 1
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 2
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2663 elements, expanding data 1
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 222 elements, expanding data 2
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 3
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2663 elements, expanding data 1
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 222 elements, expanding data 2
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 3
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2663 elements, expanding data 1
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 222 elements, expanding data 2
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 3
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2663 elements, expanding data 1
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 222 elements, expanding data 2
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 3
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2663 elements, expanding data 1
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 222 elements, expanding data 2
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 3
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3542 elements, expanding data 1
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1440 elements, expanding data 2
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3542 elements, expanding data 1
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1440 elements, expanding data 2
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3542 elements, expanding data 1
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1440 elements, expanding data 2
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3542 elements, expanding data 1
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1440 elements, expanding data 2
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3542 elements, expanding data 1
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1440 elements, expanding data 2
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2584 elements, expanding data 1
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 2
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2584 elements, expanding data 1
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 2
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2584 elements, expanding data 1
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 2
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2584 elements, expanding data 1
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 2
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2584 elements, expanding data 1
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 2
14:08:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:25 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 10:00:00, weight 0.39) and
after (2023-09-02 11:00:00, weight 0.61) in time
14:08:25 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.0818650446857 and -58.955504183656075 degrees.
14:08:25 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.0818650446857 and -58.955504183656075 degrees.
14:08:25 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:25 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:25 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:25 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:25 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:25 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:25 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.856729 (min) 1.09605 (max)
14:08:25 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.03401 (min) 0.808563 (max)
14:08:25 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000188573 (min) 0.00063556 (max)
14:08:25 DEBUG opendrift.models.basemodel:1524: x_wind: -6.83002 (min) 7.86585 (max)
14:08:25 DEBUG opendrift.models.basemodel:1524: y_wind: -9.87901 (min) 4.06673 (max)
14:08:25 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:25 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:25 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:25 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:25 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:25 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:25 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:25 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5703 (max)
14:08:25 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:25 DEBUG opendrift.models.basemodel:1527: 4306 active elements
14:08:25 DEBUG opendrift.models.basemodel:1538: 59.097050092124 <- latitude -> 59.18785856074355
14:08:25 DEBUG opendrift.models.basemodel:1543: 10.918145519702062 <- longitude -> 11.044506369017896
14:08:25 DEBUG opendrift.models.basemodel:1548: -14.529632568359375 <- z -> 0.0
14:08:25 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:25 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:25 DEBUG opendrift.models.physics_methods:1050: min: 0.017663, mean: 3.024534, max: 8.441978
14:08:25 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.017663, mean: 3.024534, max: 8.441978
14:08:25 DEBUG opendrift.models.basemodel:813: 669 elements hit coastline, moving back to water
14:08:25 DEBUG opendrift.models.basemodel:836: Lifting 116 elements to seafloor.
14:08:25 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:25 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:25 DEBUG opendrift.models.physics_methods:828: Advecting 38 of 4306 elements above 0.100m with wind-sheared ocean current (0.004616 m/s - 0.118908 m/s)
14:08:25 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:25 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:25 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.0881882700472641
14:08:25 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:25 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:25 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:25 DEBUG opendrift.models.oceandrift:582: 442 elements penetrated seafloor, lifting up
14:08:25 DEBUG opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
14:08:25 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
14:08:25 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
14:08:25 DEBUG opendrift.models.oceandrift:582: 356 elements penetrated seafloor, lifting up
14:08:25 DEBUG opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
14:08:25 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
14:08:25 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
14:08:25 DEBUG opendrift.models.oceandrift:582: 345 elements penetrated seafloor, lifting up
14:08:25 DEBUG opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
14:08:25 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
14:08:25 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
14:08:25 DEBUG opendrift.models.oceandrift:582: 313 elements penetrated seafloor, lifting up
14:08:25 DEBUG opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
14:08:25 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
14:08:25 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
14:08:25 DEBUG opendrift.models.oceandrift:582: 301 elements penetrated seafloor, lifting up
14:08:25 DEBUG opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
14:08:25 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
14:08:25 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
14:08:25 DEBUG opendrift.models.oceandrift:582: 290 elements penetrated seafloor, lifting up
14:08:25 DEBUG opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
14:08:25 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
14:08:25 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
14:08:25 DEBUG opendrift.models.oceandrift:582: 274 elements penetrated seafloor, lifting up
14:08:25 DEBUG opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
14:08:25 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
14:08:25 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
14:08:25 DEBUG opendrift.models.oceandrift:582: 278 elements penetrated seafloor, lifting up
14:08:25 DEBUG opendrift.models.oceandrift:600: 42 elements reached seafloor, set to bottom
14:08:25 DEBUG opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
14:08:25 DEBUG opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
14:08:25 DEBUG opendrift.models.oceandrift:582: 242 elements penetrated seafloor, lifting up
14:08:25 DEBUG opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
14:08:25 DEBUG opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
14:08:25 DEBUG opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
14:08:25 DEBUG opendrift.models.oceandrift:582: 289 elements penetrated seafloor, lifting up
14:08:25 DEBUG opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
14:08:25 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
14:08:25 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
14:08:25 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:25 DEBUG opendrift.models.basemodel:2945: 4306 active elements (0 deactivated)
14:08:25 DEBUG opendrift.models.basemodel:1658: to be seeded: 5694, already seeded 4306
14:08:25 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:08:25 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:25 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:25 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:25 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:25 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:25 DEBUG opendrift.models.basemodel:1253: Data needed for 4340 elements
14:08:25 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:25 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 10:00:00 (before)
2023-09-02 11:00:00 (after)
14:08:25 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 10:00:00) in space (linearNDFast)
14:08:25 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:25 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:25 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:25 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:25 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:25 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:25 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.545 (max)
14:08:25 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:25 DEBUG opendrift.models.basemodel:1527: 4340 active elements
14:08:25 DEBUG opendrift.models.basemodel:1538: 59.09721148002798 <- latitude -> 59.1882035457776
14:08:25 DEBUG opendrift.models.basemodel:1543: 10.912919336691312 <- longitude -> 11.042425017276067
14:08:25 DEBUG opendrift.models.basemodel:1548: -14.69509711546041 <- z -> 0.0
14:08:25 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:25 DEBUG opendrift.models.basemodel:836: Lifting 331 elements to seafloor.
14:08:25 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:25 INFO opendrift.models.basemodel:2882: 2023-09-02 10:46:21.121579 - step 125 of 216 - 4340 active elements (0 deactivated)
14:08:25 DEBUG opendrift.models.basemodel:2888: 5660 elements scheduled.
14:08:25 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:25 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:25 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:25 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:25 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:25 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:25 DEBUG opendrift.models.basemodel:1253: Data needed for 4340 elements
14:08:25 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:25 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:25 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:25 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:25 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:25 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:25 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:25 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:25 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:25 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:25 DEBUG opendrift.models.basemodel:1253: Data needed for 4340 elements
14:08:25 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:25 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 10:00:00 (before)
2023-09-02 11:00:00 (after)
14:08:26 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:26 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:26 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:26 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:26 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:26 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:26 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x23x5) for time after (2023-09-02 11:00:00)
14:08:26 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 10:00:00) in space (linearNDFast)
14:08:26 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:26 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 11:00:00) in space (linearNDFast)
14:08:26 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2628 elements, expanding data 1
14:08:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 2
14:08:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2628 elements, expanding data 1
14:08:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 2
14:08:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2702 elements, expanding data 1
14:08:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 224 elements, expanding data 2
14:08:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 3
14:08:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2702 elements, expanding data 1
14:08:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 224 elements, expanding data 2
14:08:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 3
14:08:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2702 elements, expanding data 1
14:08:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 224 elements, expanding data 2
14:08:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 3
14:08:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2702 elements, expanding data 1
14:08:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 224 elements, expanding data 2
14:08:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 3
14:08:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2702 elements, expanding data 1
14:08:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 224 elements, expanding data 2
14:08:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 3
14:08:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3571 elements, expanding data 1
14:08:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1486 elements, expanding data 2
14:08:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3571 elements, expanding data 1
14:08:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1486 elements, expanding data 2
14:08:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3571 elements, expanding data 1
14:08:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1486 elements, expanding data 2
14:08:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3571 elements, expanding data 1
14:08:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1486 elements, expanding data 2
14:08:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3571 elements, expanding data 1
14:08:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1486 elements, expanding data 2
14:08:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2628 elements, expanding data 1
14:08:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 2
14:08:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2628 elements, expanding data 1
14:08:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 2
14:08:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2628 elements, expanding data 1
14:08:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 2
14:08:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2628 elements, expanding data 1
14:08:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 2
14:08:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2628 elements, expanding data 1
14:08:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 2
14:08:26 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 10:00:00, weight 0.23) and
after (2023-09-02 11:00:00, weight 0.77) in time
14:08:26 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.08709123350607 and -58.957585539144695 degrees.
14:08:26 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.08709123350607 and -58.957585539144695 degrees.
14:08:26 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:26 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:26 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:26 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:26 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:26 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:26 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.721202 (min) 1.48671 (max)
14:08:26 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.98429 (min) 0.827664 (max)
14:08:26 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.00018563 (min) 0.000592426 (max)
14:08:26 DEBUG opendrift.models.basemodel:1524: x_wind: -7.76327 (min) 8.20299 (max)
14:08:26 DEBUG opendrift.models.basemodel:1524: y_wind: -8.84346 (min) 4.86777 (max)
14:08:26 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:26 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:26 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:26 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:26 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:26 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:26 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:26 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.545 (max)
14:08:26 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:26 DEBUG opendrift.models.basemodel:1527: 4340 active elements
14:08:26 DEBUG opendrift.models.basemodel:1538: 59.09721148002798 <- latitude -> 59.1882035457776
14:08:26 DEBUG opendrift.models.basemodel:1543: 10.912919336691312 <- longitude -> 11.042425017276067
14:08:26 DEBUG opendrift.models.basemodel:1548: -14.69509711546041 <- z -> 0.0
14:08:26 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:26 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:26 DEBUG opendrift.models.physics_methods:1050: min: 0.015326, mean: 3.032406, max: 8.516954
14:08:26 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.015326, mean: 3.032406, max: 8.516954
14:08:26 DEBUG opendrift.models.basemodel:813: 663 elements hit coastline, moving back to water
14:08:26 DEBUG opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
14:08:26 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:26 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:26 DEBUG opendrift.models.physics_methods:828: Advecting 35 of 4340 elements above 0.100m with wind-sheared ocean current (0.003983 m/s - 0.158214 m/s)
14:08:26 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:26 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:26 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08976162857826232
14:08:26 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:26 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:26 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:26 DEBUG opendrift.models.oceandrift:582: 469 elements penetrated seafloor, lifting up
14:08:26 DEBUG opendrift.models.oceandrift:600: 64 elements reached seafloor, set to bottom
14:08:26 DEBUG opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
14:08:26 DEBUG opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
14:08:26 DEBUG opendrift.models.oceandrift:582: 377 elements penetrated seafloor, lifting up
14:08:26 DEBUG opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
14:08:26 DEBUG opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
14:08:26 DEBUG opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
14:08:26 DEBUG opendrift.models.oceandrift:582: 313 elements penetrated seafloor, lifting up
14:08:26 DEBUG opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
14:08:26 DEBUG opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
14:08:26 DEBUG opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
14:08:26 DEBUG opendrift.models.oceandrift:582: 287 elements penetrated seafloor, lifting up
14:08:26 DEBUG opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
14:08:26 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
14:08:26 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
14:08:26 DEBUG opendrift.models.oceandrift:582: 311 elements penetrated seafloor, lifting up
14:08:26 DEBUG opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
14:08:26 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
14:08:26 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
14:08:26 DEBUG opendrift.models.oceandrift:582: 310 elements penetrated seafloor, lifting up
14:08:26 DEBUG opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
14:08:26 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
14:08:26 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
14:08:26 DEBUG opendrift.models.oceandrift:582: 285 elements penetrated seafloor, lifting up
14:08:26 DEBUG opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
14:08:26 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
14:08:26 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
14:08:26 DEBUG opendrift.models.oceandrift:582: 290 elements penetrated seafloor, lifting up
14:08:26 DEBUG opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
14:08:26 DEBUG opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
14:08:26 DEBUG opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
14:08:26 DEBUG opendrift.models.oceandrift:582: 303 elements penetrated seafloor, lifting up
14:08:26 DEBUG opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
14:08:26 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
14:08:26 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
14:08:26 DEBUG opendrift.models.oceandrift:582: 295 elements penetrated seafloor, lifting up
14:08:26 DEBUG opendrift.models.oceandrift:600: 42 elements reached seafloor, set to bottom
14:08:26 DEBUG opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
14:08:26 DEBUG opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
14:08:26 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:26 DEBUG opendrift.models.basemodel:2945: 4340 active elements (0 deactivated)
14:08:26 DEBUG opendrift.models.basemodel:1658: to be seeded: 5660, already seeded 4340
14:08:26 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:08:26 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:26 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:26 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:26 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:26 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:26 DEBUG opendrift.models.basemodel:1253: Data needed for 4375 elements
14:08:26 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:26 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 10:00:00 (before)
2023-09-02 11:00:00 (after)
14:08:26 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 10:00:00) in space (linearNDFast)
14:08:26 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:26 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:26 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:26 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:26 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:26 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:26 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.6036 (max)
14:08:26 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:26 DEBUG opendrift.models.basemodel:1527: 4375 active elements
14:08:26 DEBUG opendrift.models.basemodel:1538: 59.09582219224324 <- latitude -> 59.1882035457776
14:08:26 DEBUG opendrift.models.basemodel:1543: 10.915543865500252 <- longitude -> 11.041556880289267
14:08:26 DEBUG opendrift.models.basemodel:1548: -14.92354114150744 <- z -> 0.0
14:08:26 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:26 DEBUG opendrift.models.basemodel:836: Lifting 329 elements to seafloor.
14:08:26 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:26 INFO opendrift.models.basemodel:2882: 2023-09-02 10:56:21.121579 - step 126 of 216 - 4375 active elements (0 deactivated)
14:08:26 DEBUG opendrift.models.basemodel:2888: 5625 elements scheduled.
14:08:26 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:26 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:26 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:26 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:26 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:26 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:26 DEBUG opendrift.models.basemodel:1253: Data needed for 4375 elements
14:08:26 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:26 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:26 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:26 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:26 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:26 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:26 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:26 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:26 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:26 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:26 DEBUG opendrift.models.basemodel:1253: Data needed for 4375 elements
14:08:26 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:26 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 10:00:00 (before)
2023-09-02 11:00:00 (after)
14:08:27 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:27 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:27 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:27 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:27 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:27 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:27 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x23x5) for time after (2023-09-02 11:00:00)
14:08:27 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 10:00:00) in space (linearNDFast)
14:08:27 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:27 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 11:00:00) in space (linearNDFast)
14:08:27 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2645 elements, expanding data 1
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 2
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2645 elements, expanding data 1
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 2
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2718 elements, expanding data 1
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 230 elements, expanding data 2
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 3
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2718 elements, expanding data 1
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 230 elements, expanding data 2
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 3
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2718 elements, expanding data 1
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 230 elements, expanding data 2
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 3
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2718 elements, expanding data 1
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 230 elements, expanding data 2
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 3
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2718 elements, expanding data 1
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 230 elements, expanding data 2
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 3
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3605 elements, expanding data 1
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1525 elements, expanding data 2
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3605 elements, expanding data 1
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1525 elements, expanding data 2
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3605 elements, expanding data 1
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1525 elements, expanding data 2
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3605 elements, expanding data 1
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1525 elements, expanding data 2
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3605 elements, expanding data 1
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1525 elements, expanding data 2
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2645 elements, expanding data 1
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 2
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2645 elements, expanding data 1
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 2
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2645 elements, expanding data 1
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 2
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2645 elements, expanding data 1
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 2
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2645 elements, expanding data 1
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 2
14:08:27 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 10:00:00, weight 0.06) and
after (2023-09-02 11:00:00, weight 0.94) in time
14:08:27 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.08446670079429 and -58.95845368400539 degrees.
14:08:27 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.08446670079429 and -58.95845368400539 degrees.
14:08:27 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:27 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:27 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:27 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:27 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:27 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:27 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.772288 (min) 1.12672 (max)
14:08:27 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.16246 (min) 0.818514 (max)
14:08:27 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000190524 (min) 0.000694285 (max)
14:08:27 DEBUG opendrift.models.basemodel:1524: x_wind: -6.49821 (min) 7.48497 (max)
14:08:27 DEBUG opendrift.models.basemodel:1524: y_wind: -9.82563 (min) 4.28404 (max)
14:08:27 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:27 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:27 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:27 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:27 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:27 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:27 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:27 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.6036 (max)
14:08:27 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:27 DEBUG opendrift.models.basemodel:1527: 4375 active elements
14:08:27 DEBUG opendrift.models.basemodel:1538: 59.09582219224324 <- latitude -> 59.1882035457776
14:08:27 DEBUG opendrift.models.basemodel:1543: 10.915543865500252 <- longitude -> 11.041556880289267
14:08:27 DEBUG opendrift.models.basemodel:1548: -14.92354114150744 <- z -> 0.0
14:08:27 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:27 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:27 DEBUG opendrift.models.physics_methods:1050: min: 0.084401, mean: 2.982063, max: 9.117938
14:08:27 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.084401, mean: 2.982063, max: 9.117938
14:08:27 DEBUG opendrift.models.basemodel:813: 691 elements hit coastline, moving back to water
14:08:27 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:08:27 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:27 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:27 DEBUG opendrift.models.physics_methods:828: Advecting 37 of 4375 elements above 0.100m with wind-sheared ocean current (0.010932 m/s - 0.147002 m/s)
14:08:27 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:27 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:27 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10287571273572921
14:08:27 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:27 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:27 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:27 DEBUG opendrift.models.oceandrift:582: 532 elements penetrated seafloor, lifting up
14:08:27 DEBUG opendrift.models.oceandrift:600: 54 elements reached seafloor, set to bottom
14:08:27 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
14:08:27 DEBUG opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
14:08:27 DEBUG opendrift.models.oceandrift:582: 397 elements penetrated seafloor, lifting up
14:08:27 DEBUG opendrift.models.oceandrift:600: 62 elements reached seafloor, set to bottom
14:08:27 DEBUG opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
14:08:27 DEBUG opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
14:08:27 DEBUG opendrift.models.oceandrift:582: 338 elements penetrated seafloor, lifting up
14:08:27 DEBUG opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
14:08:27 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
14:08:27 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
14:08:27 DEBUG opendrift.models.oceandrift:582: 331 elements penetrated seafloor, lifting up
14:08:27 DEBUG opendrift.models.oceandrift:600: 56 elements reached seafloor, set to bottom
14:08:27 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
14:08:27 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
14:08:27 DEBUG opendrift.models.oceandrift:582: 315 elements penetrated seafloor, lifting up
14:08:27 DEBUG opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
14:08:27 DEBUG opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
14:08:27 DEBUG opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
14:08:27 DEBUG opendrift.models.oceandrift:582: 319 elements penetrated seafloor, lifting up
14:08:27 DEBUG opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
14:08:27 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
14:08:27 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
14:08:27 DEBUG opendrift.models.oceandrift:582: 323 elements penetrated seafloor, lifting up
14:08:27 DEBUG opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
14:08:27 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
14:08:27 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
14:08:27 DEBUG opendrift.models.oceandrift:582: 275 elements penetrated seafloor, lifting up
14:08:27 DEBUG opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
14:08:27 DEBUG opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
14:08:27 DEBUG opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
14:08:27 DEBUG opendrift.models.oceandrift:582: 279 elements penetrated seafloor, lifting up
14:08:27 DEBUG opendrift.models.oceandrift:600: 42 elements reached seafloor, set to bottom
14:08:27 DEBUG opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
14:08:27 DEBUG opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
14:08:27 DEBUG opendrift.models.oceandrift:582: 280 elements penetrated seafloor, lifting up
14:08:27 DEBUG opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
14:08:27 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
14:08:27 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
14:08:27 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:27 DEBUG opendrift.models.basemodel:2945: 4375 active elements (0 deactivated)
14:08:27 DEBUG opendrift.models.basemodel:1658: to be seeded: 5625, already seeded 4375
14:08:27 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:08:27 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:27 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:27 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:27 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:27 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:27 DEBUG opendrift.models.basemodel:1253: Data needed for 4410 elements
14:08:27 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:27 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 11:00:00 (before)
2023-09-02 12:00:00 (after)
14:08:27 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 11:00:00) in space (linearNDFast)
14:08:27 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:27 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:27 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:27 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:27 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:27 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:27 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.6097 (max)
14:08:27 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:27 DEBUG opendrift.models.basemodel:1527: 4410 active elements
14:08:27 DEBUG opendrift.models.basemodel:1538: 59.09568853450594 <- latitude -> 59.188824041630724
14:08:27 DEBUG opendrift.models.basemodel:1543: 10.91523066676588 <- longitude -> 11.041556880289264
14:08:27 DEBUG opendrift.models.basemodel:1548: -14.181459655761719 <- z -> 0.0
14:08:27 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:27 DEBUG opendrift.models.basemodel:836: Lifting 405 elements to seafloor.
14:08:27 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:27 INFO opendrift.models.basemodel:2882: 2023-09-02 11:06:21.121579 - step 127 of 216 - 4410 active elements (0 deactivated)
14:08:27 DEBUG opendrift.models.basemodel:2888: 5590 elements scheduled.
14:08:27 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:27 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:27 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:27 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:27 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:27 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:27 DEBUG opendrift.models.basemodel:1253: Data needed for 4410 elements
14:08:27 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:27 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:27 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:27 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:27 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:27 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:27 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:27 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:27 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:27 DEBUG opendrift.models.basemodel:1253: Data needed for 4410 elements
14:08:27 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:27 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 11:00:00 (before)
2023-09-02 12:00:00 (after)
14:08:28 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:28 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:28 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:28 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:28 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:28 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:28 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x23x5) for time after (2023-09-02 12:00:00)
14:08:28 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 11:00:00) in space (linearNDFast)
14:08:28 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:28 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 12:00:00) in space (linearNDFast)
14:08:28 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2681 elements, expanding data 1
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 2
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2681 elements, expanding data 1
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 2
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2756 elements, expanding data 1
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 2
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 3
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2756 elements, expanding data 1
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 2
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 3
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2756 elements, expanding data 1
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 2
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 3
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2756 elements, expanding data 1
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 2
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 3
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2756 elements, expanding data 1
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 2
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 3
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3646 elements, expanding data 1
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1531 elements, expanding data 2
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3646 elements, expanding data 1
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1531 elements, expanding data 2
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3646 elements, expanding data 1
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1531 elements, expanding data 2
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3646 elements, expanding data 1
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1531 elements, expanding data 2
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3646 elements, expanding data 1
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1531 elements, expanding data 2
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2681 elements, expanding data 1
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 2
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2681 elements, expanding data 1
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 2
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2681 elements, expanding data 1
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 2
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2681 elements, expanding data 1
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 2
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2681 elements, expanding data 1
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 2
14:08:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:28 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 11:00:00, weight 0.89) and
after (2023-09-02 12:00:00, weight 0.11) in time
14:08:28 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.08477991359187 and -58.95845367925053 degrees.
14:08:28 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.08477991359187 and -58.95845367925053 degrees.
14:08:28 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:28 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:28 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:28 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:28 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:28 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:28 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.760135 (min) 1.11382 (max)
14:08:28 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.910523 (min) 0.804673 (max)
14:08:28 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000180194 (min) 0.000619023 (max)
14:08:28 DEBUG opendrift.models.basemodel:1524: x_wind: -6.25867 (min) 7.63254 (max)
14:08:28 DEBUG opendrift.models.basemodel:1524: y_wind: -8.99757 (min) 4.18449 (max)
14:08:28 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:28 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:28 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:28 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:28 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:28 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:28 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:28 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.6097 (max)
14:08:28 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:28 DEBUG opendrift.models.basemodel:1527: 4410 active elements
14:08:28 DEBUG opendrift.models.basemodel:1538: 59.09568853450594 <- latitude -> 59.188824041630724
14:08:28 DEBUG opendrift.models.basemodel:1543: 10.91523066676588 <- longitude -> 11.041556880289264
14:08:28 DEBUG opendrift.models.basemodel:1548: -14.181459655761719 <- z -> 0.0
14:08:28 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:28 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:28 DEBUG opendrift.models.physics_methods:1050: min: 0.041749, mean: 2.991405, max: 9.035765
14:08:28 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.041749, mean: 2.991405, max: 9.035765
14:08:28 DEBUG opendrift.models.basemodel:813: 682 elements hit coastline, moving back to water
14:08:28 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:08:28 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:28 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:28 DEBUG opendrift.models.physics_methods:828: Advecting 37 of 4410 elements above 0.100m with wind-sheared ocean current (0.012334 m/s - 0.136825 m/s)
14:08:28 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:28 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:28 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10102986118371964
14:08:28 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:28 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:28 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:28 DEBUG opendrift.models.oceandrift:582: 490 elements penetrated seafloor, lifting up
14:08:28 DEBUG opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
14:08:28 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
14:08:28 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
14:08:28 DEBUG opendrift.models.oceandrift:582: 407 elements penetrated seafloor, lifting up
14:08:28 DEBUG opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
14:08:28 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
14:08:28 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
14:08:28 DEBUG opendrift.models.oceandrift:582: 376 elements penetrated seafloor, lifting up
14:08:28 DEBUG opendrift.models.oceandrift:600: 66 elements reached seafloor, set to bottom
14:08:28 DEBUG opendrift.models.basemodel:836: Lifting 66 elements to seafloor.
14:08:28 DEBUG opendrift.models.sedimentdrift:112: Settling 66 elements at seafloor
14:08:28 DEBUG opendrift.models.oceandrift:582: 338 elements penetrated seafloor, lifting up
14:08:28 DEBUG opendrift.models.oceandrift:600: 63 elements reached seafloor, set to bottom
14:08:28 DEBUG opendrift.models.basemodel:836: Lifting 63 elements to seafloor.
14:08:28 DEBUG opendrift.models.sedimentdrift:112: Settling 63 elements at seafloor
14:08:28 DEBUG opendrift.models.oceandrift:582: 327 elements penetrated seafloor, lifting up
14:08:28 DEBUG opendrift.models.oceandrift:600: 54 elements reached seafloor, set to bottom
14:08:28 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
14:08:28 DEBUG opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
14:08:28 DEBUG opendrift.models.oceandrift:582: 297 elements penetrated seafloor, lifting up
14:08:28 DEBUG opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
14:08:28 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
14:08:28 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
14:08:28 DEBUG opendrift.models.oceandrift:582: 316 elements penetrated seafloor, lifting up
14:08:28 DEBUG opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
14:08:28 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
14:08:28 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
14:08:28 DEBUG opendrift.models.oceandrift:582: 302 elements penetrated seafloor, lifting up
14:08:28 DEBUG opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
14:08:28 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
14:08:28 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
14:08:28 DEBUG opendrift.models.oceandrift:582: 275 elements penetrated seafloor, lifting up
14:08:28 DEBUG opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
14:08:28 DEBUG opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
14:08:28 DEBUG opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
14:08:28 DEBUG opendrift.models.oceandrift:582: 273 elements penetrated seafloor, lifting up
14:08:28 DEBUG opendrift.models.oceandrift:600: 36 elements reached seafloor, set to bottom
14:08:28 DEBUG opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
14:08:28 DEBUG opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
14:08:28 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:28 DEBUG opendrift.models.basemodel:2945: 4410 active elements (0 deactivated)
14:08:28 DEBUG opendrift.models.basemodel:1658: to be seeded: 5590, already seeded 4410
14:08:28 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:08:28 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:28 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:28 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:28 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:28 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:28 DEBUG opendrift.models.basemodel:1253: Data needed for 4445 elements
14:08:28 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:28 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 11:00:00 (before)
2023-09-02 12:00:00 (after)
14:08:28 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 11:00:00) in space (linearNDFast)
14:08:28 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:28 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:28 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:28 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:28 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:28 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:28 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.6398 (max)
14:08:28 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:28 DEBUG opendrift.models.basemodel:1527: 4445 active elements
14:08:28 DEBUG opendrift.models.basemodel:1538: 59.09511251824023 <- latitude -> 59.1882035457776
14:08:28 DEBUG opendrift.models.basemodel:1543: 10.914717814598548 <- longitude -> 11.041556880289267
14:08:28 DEBUG opendrift.models.basemodel:1548: -14.398869514465332 <- z -> 0.0
14:08:28 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:28 DEBUG opendrift.models.basemodel:836: Lifting 375 elements to seafloor.
14:08:28 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:28 INFO opendrift.models.basemodel:2882: 2023-09-02 11:16:21.121579 - step 128 of 216 - 4445 active elements (0 deactivated)
14:08:28 DEBUG opendrift.models.basemodel:2888: 5555 elements scheduled.
14:08:28 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:28 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:28 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:28 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:28 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:28 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:28 DEBUG opendrift.models.basemodel:1253: Data needed for 4445 elements
14:08:28 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:28 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:28 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:28 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:28 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:28 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:28 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:28 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:28 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:28 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:28 DEBUG opendrift.models.basemodel:1253: Data needed for 4445 elements
14:08:28 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:28 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 11:00:00 (before)
2023-09-02 12:00:00 (after)
14:08:29 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:29 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:29 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:29 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:29 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:29 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:29 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x23x5) for time after (2023-09-02 12:00:00)
14:08:29 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 11:00:00) in space (linearNDFast)
14:08:29 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:29 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 12:00:00) in space (linearNDFast)
14:08:29 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2759 elements, expanding data 1
14:08:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 2
14:08:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2759 elements, expanding data 1
14:08:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 2
14:08:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2825 elements, expanding data 1
14:08:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 225 elements, expanding data 2
14:08:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 3
14:08:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2825 elements, expanding data 1
14:08:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 225 elements, expanding data 2
14:08:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 3
14:08:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2825 elements, expanding data 1
14:08:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 225 elements, expanding data 2
14:08:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 3
14:08:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2825 elements, expanding data 1
14:08:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 225 elements, expanding data 2
14:08:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 3
14:08:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2825 elements, expanding data 1
14:08:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 225 elements, expanding data 2
14:08:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 3
14:08:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3684 elements, expanding data 1
14:08:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1577 elements, expanding data 2
14:08:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3684 elements, expanding data 1
14:08:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1577 elements, expanding data 2
14:08:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3684 elements, expanding data 1
14:08:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1577 elements, expanding data 2
14:08:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3684 elements, expanding data 1
14:08:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1577 elements, expanding data 2
14:08:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3684 elements, expanding data 1
14:08:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1577 elements, expanding data 2
14:08:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2759 elements, expanding data 1
14:08:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 2
14:08:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2759 elements, expanding data 1
14:08:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 2
14:08:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2759 elements, expanding data 1
14:08:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 2
14:08:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2759 elements, expanding data 1
14:08:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 2
14:08:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2759 elements, expanding data 1
14:08:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 2
14:08:29 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 11:00:00, weight 0.73) and
after (2023-09-02 12:00:00, weight 0.27) in time
14:08:29 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.08529275646165 and -58.95845368226166 degrees.
14:08:29 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.08529275646165 and -58.95845368226166 degrees.
14:08:29 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:29 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:29 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:29 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:29 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:29 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:29 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.88574 (min) 1.12383 (max)
14:08:29 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.02762 (min) 0.913645 (max)
14:08:29 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000164711 (min) 0.000595553 (max)
14:08:29 DEBUG opendrift.models.basemodel:1524: x_wind: -7.05666 (min) 8.26337 (max)
14:08:29 DEBUG opendrift.models.basemodel:1524: y_wind: -9.72096 (min) 4.30366 (max)
14:08:29 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:29 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:29 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:29 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:29 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:29 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:29 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:29 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.6398 (max)
14:08:29 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:29 DEBUG opendrift.models.basemodel:1527: 4445 active elements
14:08:29 DEBUG opendrift.models.basemodel:1538: 59.09511251824023 <- latitude -> 59.1882035457776
14:08:29 DEBUG opendrift.models.basemodel:1543: 10.914717814598548 <- longitude -> 11.041556880289267
14:08:29 DEBUG opendrift.models.basemodel:1548: -14.296287536621094 <- z -> 0.0
14:08:29 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:29 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:29 DEBUG opendrift.models.physics_methods:1050: min: 0.012871, mean: 3.038001, max: 8.854773
14:08:29 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.012871, mean: 3.038001, max: 8.854773
14:08:29 DEBUG opendrift.models.basemodel:813: 691 elements hit coastline, moving back to water
14:08:29 DEBUG opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
14:08:29 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:29 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:29 DEBUG opendrift.models.physics_methods:828: Advecting 39 of 4445 elements above 0.100m with wind-sheared ocean current (0.001955 m/s - 0.187268 m/s)
14:08:29 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:29 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:29 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.0970232038875389
14:08:29 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:29 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:29 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:29 DEBUG opendrift.models.oceandrift:582: 484 elements penetrated seafloor, lifting up
14:08:29 DEBUG opendrift.models.oceandrift:600: 62 elements reached seafloor, set to bottom
14:08:29 DEBUG opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
14:08:29 DEBUG opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
14:08:29 DEBUG opendrift.models.oceandrift:582: 380 elements penetrated seafloor, lifting up
14:08:29 DEBUG opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
14:08:29 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
14:08:29 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
14:08:29 DEBUG opendrift.models.oceandrift:582: 354 elements penetrated seafloor, lifting up
14:08:29 DEBUG opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
14:08:29 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
14:08:29 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
14:08:29 DEBUG opendrift.models.oceandrift:582: 325 elements penetrated seafloor, lifting up
14:08:29 DEBUG opendrift.models.oceandrift:600: 54 elements reached seafloor, set to bottom
14:08:29 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
14:08:29 DEBUG opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
14:08:29 DEBUG opendrift.models.oceandrift:582: 324 elements penetrated seafloor, lifting up
14:08:29 DEBUG opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
14:08:29 DEBUG opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
14:08:29 DEBUG opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
14:08:29 DEBUG opendrift.models.oceandrift:582: 340 elements penetrated seafloor, lifting up
14:08:29 DEBUG opendrift.models.oceandrift:600: 40 elements reached seafloor, set to bottom
14:08:29 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
14:08:29 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
14:08:29 DEBUG opendrift.models.oceandrift:582: 310 elements penetrated seafloor, lifting up
14:08:29 DEBUG opendrift.models.oceandrift:600: 42 elements reached seafloor, set to bottom
14:08:29 DEBUG opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
14:08:29 DEBUG opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
14:08:29 DEBUG opendrift.models.oceandrift:582: 323 elements penetrated seafloor, lifting up
14:08:29 DEBUG opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
14:08:29 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
14:08:29 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
14:08:29 DEBUG opendrift.models.oceandrift:582: 313 elements penetrated seafloor, lifting up
14:08:29 DEBUG opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
14:08:29 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
14:08:29 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
14:08:29 DEBUG opendrift.models.oceandrift:582: 309 elements penetrated seafloor, lifting up
14:08:29 DEBUG opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
14:08:29 DEBUG opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
14:08:29 DEBUG opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
14:08:29 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:29 DEBUG opendrift.models.basemodel:2945: 4445 active elements (0 deactivated)
14:08:29 DEBUG opendrift.models.basemodel:1658: to be seeded: 5555, already seeded 4445
14:08:29 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:08:29 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:29 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:29 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:29 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:29 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:29 DEBUG opendrift.models.basemodel:1253: Data needed for 4479 elements
14:08:29 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:29 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 11:00:00 (before)
2023-09-02 12:00:00 (after)
14:08:29 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 11:00:00) in space (linearNDFast)
14:08:29 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:29 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:29 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:29 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:29 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:29 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:29 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.6075 (max)
14:08:29 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:29 DEBUG opendrift.models.basemodel:1527: 4479 active elements
14:08:29 DEBUG opendrift.models.basemodel:1538: 59.09565286140648 <- latitude -> 59.188382133217914
14:08:29 DEBUG opendrift.models.basemodel:1543: 10.91207275918856 <- longitude -> 11.040692745045483
14:08:29 DEBUG opendrift.models.basemodel:1548: -14.65254997253418 <- z -> 0.0
14:08:29 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:29 DEBUG opendrift.models.basemodel:836: Lifting 359 elements to seafloor.
14:08:29 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:29 INFO opendrift.models.basemodel:2882: 2023-09-02 11:26:21.121579 - step 129 of 216 - 4479 active elements (0 deactivated)
14:08:29 DEBUG opendrift.models.basemodel:2888: 5521 elements scheduled.
14:08:29 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:29 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:29 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:29 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:29 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:29 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:29 DEBUG opendrift.models.basemodel:1253: Data needed for 4479 elements
14:08:29 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:29 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:29 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:29 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:29 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:29 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:29 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:29 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:29 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:29 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:29 DEBUG opendrift.models.basemodel:1253: Data needed for 4479 elements
14:08:29 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:29 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 11:00:00 (before)
2023-09-02 12:00:00 (after)
14:08:30 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:30 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:30 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:30 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:30 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:30 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:30 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x23x5) for time after (2023-09-02 12:00:00)
14:08:30 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 11:00:00) in space (linearNDFast)
14:08:30 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:30 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 12:00:00) in space (linearNDFast)
14:08:30 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2768 elements, expanding data 1
14:08:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
14:08:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2768 elements, expanding data 1
14:08:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
14:08:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2834 elements, expanding data 1
14:08:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 230 elements, expanding data 2
14:08:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 3
14:08:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2834 elements, expanding data 1
14:08:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 230 elements, expanding data 2
14:08:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 3
14:08:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2834 elements, expanding data 1
14:08:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 230 elements, expanding data 2
14:08:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 3
14:08:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2834 elements, expanding data 1
14:08:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 230 elements, expanding data 2
14:08:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 3
14:08:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2834 elements, expanding data 1
14:08:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 230 elements, expanding data 2
14:08:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 3
14:08:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3750 elements, expanding data 1
14:08:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1610 elements, expanding data 2
14:08:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3750 elements, expanding data 1
14:08:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1610 elements, expanding data 2
14:08:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3750 elements, expanding data 1
14:08:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1610 elements, expanding data 2
14:08:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3750 elements, expanding data 1
14:08:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1610 elements, expanding data 2
14:08:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3750 elements, expanding data 1
14:08:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1610 elements, expanding data 2
14:08:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2768 elements, expanding data 1
14:08:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
14:08:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2768 elements, expanding data 1
14:08:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
14:08:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2768 elements, expanding data 1
14:08:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
14:08:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2768 elements, expanding data 1
14:08:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
14:08:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2768 elements, expanding data 1
14:08:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
14:08:30 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 11:00:00, weight 0.56) and
after (2023-09-02 12:00:00, weight 0.44) in time
14:08:30 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.087937804999385 and -58.95931781617579 degrees.
14:08:30 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.087937804999385 and -58.95931781617579 degrees.
14:08:30 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:30 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:30 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:30 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:30 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:30 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:30 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.807127 (min) 1.13604 (max)
14:08:30 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.981245 (min) 0.841634 (max)
14:08:30 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000165778 (min) 0.000628833 (max)
14:08:30 DEBUG opendrift.models.basemodel:1524: x_wind: -5.62468 (min) 8.01001 (max)
14:08:30 DEBUG opendrift.models.basemodel:1524: y_wind: -9.17848 (min) 4.51627 (max)
14:08:30 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:30 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:30 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:30 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:30 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:30 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:30 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:30 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.6075 (max)
14:08:30 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:30 DEBUG opendrift.models.basemodel:1527: 4479 active elements
14:08:30 DEBUG opendrift.models.basemodel:1538: 59.09565286140648 <- latitude -> 59.188382133217914
14:08:30 DEBUG opendrift.models.basemodel:1543: 10.91207275918856 <- longitude -> 11.040692745045483
14:08:30 DEBUG opendrift.models.basemodel:1548: -14.65254997253418 <- z -> 0.0
14:08:30 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:30 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:30 DEBUG opendrift.models.physics_methods:1050: min: 0.084672, mean: 3.102631, max: 8.266044
14:08:30 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.084672, mean: 3.102631, max: 8.266044
14:08:30 DEBUG opendrift.models.basemodel:813: 718 elements hit coastline, moving back to water
14:08:30 DEBUG opendrift.models.basemodel:836: Lifting 146 elements to seafloor.
14:08:30 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:30 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:30 DEBUG opendrift.models.physics_methods:828: Advecting 38 of 4479 elements above 0.100m with wind-sheared ocean current (0.006995 m/s - 0.165540 m/s)
14:08:30 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:30 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:30 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08455098962934493
14:08:30 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:30 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:30 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:30 DEBUG opendrift.models.oceandrift:582: 524 elements penetrated seafloor, lifting up
14:08:30 DEBUG opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
14:08:30 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
14:08:30 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
14:08:30 DEBUG opendrift.models.oceandrift:582: 406 elements penetrated seafloor, lifting up
14:08:30 DEBUG opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
14:08:30 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
14:08:30 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
14:08:30 DEBUG opendrift.models.oceandrift:582: 367 elements penetrated seafloor, lifting up
14:08:30 DEBUG opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
14:08:30 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
14:08:30 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
14:08:30 DEBUG opendrift.models.oceandrift:582: 316 elements penetrated seafloor, lifting up
14:08:30 DEBUG opendrift.models.oceandrift:600: 44 elements reached seafloor, set to bottom
14:08:30 DEBUG opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
14:08:30 DEBUG opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
14:08:30 DEBUG opendrift.models.oceandrift:582: 334 elements penetrated seafloor, lifting up
14:08:30 DEBUG opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
14:08:30 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
14:08:30 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
14:08:30 DEBUG opendrift.models.oceandrift:582: 319 elements penetrated seafloor, lifting up
14:08:30 DEBUG opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
14:08:30 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
14:08:30 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
14:08:30 DEBUG opendrift.models.oceandrift:582: 314 elements penetrated seafloor, lifting up
14:08:30 DEBUG opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
14:08:30 DEBUG opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
14:08:30 DEBUG opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
14:08:30 DEBUG opendrift.models.oceandrift:582: 291 elements penetrated seafloor, lifting up
14:08:30 DEBUG opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
14:08:30 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
14:08:30 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
14:08:30 DEBUG opendrift.models.oceandrift:582: 278 elements penetrated seafloor, lifting up
14:08:30 DEBUG opendrift.models.oceandrift:600: 44 elements reached seafloor, set to bottom
14:08:30 DEBUG opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
14:08:30 DEBUG opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
14:08:30 DEBUG opendrift.models.oceandrift:582: 293 elements penetrated seafloor, lifting up
14:08:30 DEBUG opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
14:08:30 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
14:08:30 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
14:08:30 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:30 DEBUG opendrift.models.basemodel:2945: 4479 active elements (0 deactivated)
14:08:30 DEBUG opendrift.models.basemodel:1658: to be seeded: 5521, already seeded 4479
14:08:30 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:08:30 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:30 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:30 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:30 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:30 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:30 DEBUG opendrift.models.basemodel:1253: Data needed for 4514 elements
14:08:30 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:30 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 11:00:00 (before)
2023-09-02 12:00:00 (after)
14:08:30 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 11:00:00) in space (linearNDFast)
14:08:30 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:30 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:30 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:30 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:30 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:30 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:30 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5453 (max)
14:08:30 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:30 DEBUG opendrift.models.basemodel:1527: 4514 active elements
14:08:30 DEBUG opendrift.models.basemodel:1538: 59.096996205081325 <- latitude -> 59.1882035457776
14:08:30 DEBUG opendrift.models.basemodel:1543: 10.914641491938124 <- longitude -> 11.035670023563856
14:08:30 DEBUG opendrift.models.basemodel:1548: -14.672306289672852 <- z -> 0.0
14:08:30 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:30 DEBUG opendrift.models.basemodel:836: Lifting 367 elements to seafloor.
14:08:30 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:30 INFO opendrift.models.basemodel:2882: 2023-09-02 11:36:21.121579 - step 130 of 216 - 4514 active elements (0 deactivated)
14:08:30 DEBUG opendrift.models.basemodel:2888: 5486 elements scheduled.
14:08:30 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:30 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:30 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:30 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:30 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:30 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:30 DEBUG opendrift.models.basemodel:1253: Data needed for 4514 elements
14:08:30 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:30 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:30 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:30 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:30 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:30 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:30 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:30 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:30 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:30 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:30 DEBUG opendrift.models.basemodel:1253: Data needed for 4514 elements
14:08:30 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:30 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 11:00:00 (before)
2023-09-02 12:00:00 (after)
14:08:31 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:31 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:31 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:31 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:31 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:31 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:31 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x23x5) for time after (2023-09-02 12:00:00)
14:08:31 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 11:00:00) in space (linearNDFast)
14:08:31 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:31 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 12:00:00) in space (linearNDFast)
14:08:31 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2850 elements, expanding data 1
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 2
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2850 elements, expanding data 1
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 2
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2914 elements, expanding data 1
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 233 elements, expanding data 2
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 3
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2914 elements, expanding data 1
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 233 elements, expanding data 2
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 3
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2914 elements, expanding data 1
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 233 elements, expanding data 2
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 3
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2914 elements, expanding data 1
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 233 elements, expanding data 2
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 3
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2914 elements, expanding data 1
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 233 elements, expanding data 2
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 3
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3767 elements, expanding data 1
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1642 elements, expanding data 2
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3767 elements, expanding data 1
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1642 elements, expanding data 2
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3767 elements, expanding data 1
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1642 elements, expanding data 2
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3767 elements, expanding data 1
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1642 elements, expanding data 2
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3767 elements, expanding data 1
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1642 elements, expanding data 2
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2850 elements, expanding data 1
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 2
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2850 elements, expanding data 1
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 2
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2850 elements, expanding data 1
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 2
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2850 elements, expanding data 1
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 2
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2850 elements, expanding data 1
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 2
14:08:31 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 11:00:00, weight 0.39) and
after (2023-09-02 12:00:00, weight 0.61) in time
14:08:31 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.0853690732992 and -58.964340528852325 degrees.
14:08:31 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.0853690732992 and -58.964340528852325 degrees.
14:08:31 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:31 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:31 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:31 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:31 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:31 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:31 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.864172 (min) 1.15563 (max)
14:08:31 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.12892 (min) 0.889635 (max)
14:08:31 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.00016105 (min) 0.000657658 (max)
14:08:31 DEBUG opendrift.models.basemodel:1524: x_wind: -5.95779 (min) 8.04486 (max)
14:08:31 DEBUG opendrift.models.basemodel:1524: y_wind: -9.99595 (min) 4.51206 (max)
14:08:31 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:31 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:31 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:31 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:31 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:31 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:31 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:31 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5453 (max)
14:08:31 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:31 DEBUG opendrift.models.basemodel:1527: 4514 active elements
14:08:31 DEBUG opendrift.models.basemodel:1538: 59.096996205081325 <- latitude -> 59.1882035457776
14:08:31 DEBUG opendrift.models.basemodel:1543: 10.914641491938124 <- longitude -> 11.035670023563856
14:08:31 DEBUG opendrift.models.basemodel:1548: -14.563715934753418 <- z -> 0.0
14:08:31 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:31 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:31 DEBUG opendrift.models.physics_methods:1050: min: 0.081559, mean: 3.171786, max: 8.897275
14:08:31 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.081559, mean: 3.171786, max: 8.897275
14:08:31 DEBUG opendrift.models.basemodel:813: 686 elements hit coastline, moving back to water
14:08:31 DEBUG opendrift.models.basemodel:836: Lifting 128 elements to seafloor.
14:08:31 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:31 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:31 DEBUG opendrift.models.physics_methods:828: Advecting 37 of 4514 elements above 0.100m with wind-sheared ocean current (0.002286 m/s - 0.139395 m/s)
14:08:31 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:31 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:31 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.0979567581978607
14:08:31 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:31 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:31 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:31 DEBUG opendrift.models.oceandrift:582: 481 elements penetrated seafloor, lifting up
14:08:31 DEBUG opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
14:08:31 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
14:08:31 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
14:08:31 DEBUG opendrift.models.oceandrift:582: 378 elements penetrated seafloor, lifting up
14:08:31 DEBUG opendrift.models.oceandrift:600: 67 elements reached seafloor, set to bottom
14:08:31 DEBUG opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
14:08:31 DEBUG opendrift.models.sedimentdrift:112: Settling 67 elements at seafloor
14:08:31 DEBUG opendrift.models.oceandrift:582: 356 elements penetrated seafloor, lifting up
14:08:31 DEBUG opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
14:08:31 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
14:08:31 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
14:08:31 DEBUG opendrift.models.oceandrift:582: 335 elements penetrated seafloor, lifting up
14:08:31 DEBUG opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
14:08:31 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
14:08:31 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
14:08:31 DEBUG opendrift.models.oceandrift:582: 351 elements penetrated seafloor, lifting up
14:08:31 DEBUG opendrift.models.oceandrift:600: 54 elements reached seafloor, set to bottom
14:08:31 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
14:08:31 DEBUG opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
14:08:31 DEBUG opendrift.models.oceandrift:582: 318 elements penetrated seafloor, lifting up
14:08:31 DEBUG opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
14:08:31 DEBUG opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
14:08:31 DEBUG opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
14:08:31 DEBUG opendrift.models.oceandrift:582: 297 elements penetrated seafloor, lifting up
14:08:31 DEBUG opendrift.models.oceandrift:600: 42 elements reached seafloor, set to bottom
14:08:31 DEBUG opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
14:08:31 DEBUG opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
14:08:31 DEBUG opendrift.models.oceandrift:582: 310 elements penetrated seafloor, lifting up
14:08:31 DEBUG opendrift.models.oceandrift:600: 40 elements reached seafloor, set to bottom
14:08:31 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
14:08:31 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
14:08:31 DEBUG opendrift.models.oceandrift:582: 299 elements penetrated seafloor, lifting up
14:08:31 DEBUG opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
14:08:31 DEBUG opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
14:08:31 DEBUG opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
14:08:31 DEBUG opendrift.models.oceandrift:582: 307 elements penetrated seafloor, lifting up
14:08:31 DEBUG opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
14:08:31 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
14:08:31 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
14:08:31 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:31 DEBUG opendrift.models.basemodel:2945: 4514 active elements (0 deactivated)
14:08:31 DEBUG opendrift.models.basemodel:1658: to be seeded: 5486, already seeded 4514
14:08:31 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:08:31 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:31 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:31 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:31 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:31 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:31 DEBUG opendrift.models.basemodel:1253: Data needed for 4549 elements
14:08:31 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:31 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 11:00:00 (before)
2023-09-02 12:00:00 (after)
14:08:31 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 11:00:00) in space (linearNDFast)
14:08:31 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:31 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:31 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:31 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:31 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:31 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:31 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5428 (max)
14:08:31 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:31 DEBUG opendrift.models.basemodel:1527: 4549 active elements
14:08:31 DEBUG opendrift.models.basemodel:1538: 59.09701113082265 <- latitude -> 59.1882035457776
14:08:31 DEBUG opendrift.models.basemodel:1543: 10.908597993016489 <- longitude -> 11.042061024572227
14:08:31 DEBUG opendrift.models.basemodel:1548: -14.316384315490723 <- z -> 0.0
14:08:31 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:31 DEBUG opendrift.models.basemodel:836: Lifting 369 elements to seafloor.
14:08:31 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:31 INFO opendrift.models.basemodel:2882: 2023-09-02 11:46:21.121579 - step 131 of 216 - 4549 active elements (0 deactivated)
14:08:31 DEBUG opendrift.models.basemodel:2888: 5451 elements scheduled.
14:08:31 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:31 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:31 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:31 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:31 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:31 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:31 DEBUG opendrift.models.basemodel:1253: Data needed for 4549 elements
14:08:31 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:31 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:31 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:31 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:31 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:31 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:31 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:31 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:31 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:31 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:31 DEBUG opendrift.models.basemodel:1253: Data needed for 4549 elements
14:08:31 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:31 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 11:00:00 (before)
2023-09-02 12:00:00 (after)
14:08:31 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:31 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:31 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:31 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:31 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:31 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:31 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x24x5) for time after (2023-09-02 12:00:00)
14:08:31 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 11:00:00) in space (linearNDFast)
14:08:31 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:31 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 12:00:00) in space (linearNDFast)
14:08:31 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2876 elements, expanding data 1
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 2
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2876 elements, expanding data 1
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 2
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2933 elements, expanding data 1
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 226 elements, expanding data 2
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 3
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2933 elements, expanding data 1
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 226 elements, expanding data 2
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 3
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2933 elements, expanding data 1
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 226 elements, expanding data 2
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 3
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2933 elements, expanding data 1
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 226 elements, expanding data 2
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 3
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2933 elements, expanding data 1
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 226 elements, expanding data 2
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 3
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3814 elements, expanding data 1
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1680 elements, expanding data 2
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3814 elements, expanding data 1
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1680 elements, expanding data 2
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3814 elements, expanding data 1
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1680 elements, expanding data 2
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3814 elements, expanding data 1
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1680 elements, expanding data 2
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3814 elements, expanding data 1
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1680 elements, expanding data 2
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2876 elements, expanding data 1
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 2
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2876 elements, expanding data 1
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 2
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2876 elements, expanding data 1
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 2
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2876 elements, expanding data 1
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 2
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2876 elements, expanding data 1
14:08:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 2
14:08:31 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 11:00:00, weight 0.23) and
after (2023-09-02 12:00:00, weight 0.77) in time
14:08:31 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.09141257851838 and -58.95794953980343 degrees.
14:08:31 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.09141257851838 and -58.95794953980343 degrees.
14:08:31 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:31 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:31 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:31 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:31 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:31 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:31 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.829119 (min) 1.28386 (max)
14:08:31 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.936397 (min) 0.78977 (max)
14:08:31 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000271721 (min) 0.000661698 (max)
14:08:31 DEBUG opendrift.models.basemodel:1524: x_wind: -6.41279 (min) 8.58417 (max)
14:08:31 DEBUG opendrift.models.basemodel:1524: y_wind: -10.2587 (min) 4.09974 (max)
14:08:31 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:31 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:31 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:31 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:31 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:31 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:31 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:31 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5428 (max)
14:08:31 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:31 DEBUG opendrift.models.basemodel:1527: 4549 active elements
14:08:31 DEBUG opendrift.models.basemodel:1538: 59.09701113082265 <- latitude -> 59.1882035457776
14:08:31 DEBUG opendrift.models.basemodel:1543: 10.908597993016489 <- longitude -> 11.042061024572227
14:08:31 DEBUG opendrift.models.basemodel:1548: -14.265445709228516 <- z -> 0.0
14:08:31 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:31 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:31 DEBUG opendrift.models.physics_methods:1050: min: 0.081858, mean: 3.208080, max: 10.127227
14:08:31 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.081858, mean: 3.208080, max: 10.127227
14:08:31 DEBUG opendrift.models.basemodel:813: 714 elements hit coastline, moving back to water
14:08:31 DEBUG opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
14:08:31 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:31 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:31 DEBUG opendrift.models.physics_methods:828: Advecting 38 of 4549 elements above 0.100m with wind-sheared ocean current (0.004981 m/s - 0.160075 m/s)
14:08:31 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:31 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:32 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.12691047466094968
14:08:32 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:32 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:32 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:32 DEBUG opendrift.models.oceandrift:582: 519 elements penetrated seafloor, lifting up
14:08:32 DEBUG opendrift.models.oceandrift:600: 54 elements reached seafloor, set to bottom
14:08:32 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
14:08:32 DEBUG opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
14:08:32 DEBUG opendrift.models.oceandrift:582: 428 elements penetrated seafloor, lifting up
14:08:32 DEBUG opendrift.models.oceandrift:600: 52 elements reached seafloor, set to bottom
14:08:32 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
14:08:32 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
14:08:32 DEBUG opendrift.models.oceandrift:582: 381 elements penetrated seafloor, lifting up
14:08:32 DEBUG opendrift.models.oceandrift:600: 60 elements reached seafloor, set to bottom
14:08:32 DEBUG opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
14:08:32 DEBUG opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
14:08:32 DEBUG opendrift.models.oceandrift:582: 349 elements penetrated seafloor, lifting up
14:08:32 DEBUG opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
14:08:32 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
14:08:32 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
14:08:32 DEBUG opendrift.models.oceandrift:582: 339 elements penetrated seafloor, lifting up
14:08:32 DEBUG opendrift.models.oceandrift:600: 36 elements reached seafloor, set to bottom
14:08:32 DEBUG opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
14:08:32 DEBUG opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
14:08:32 DEBUG opendrift.models.oceandrift:582: 315 elements penetrated seafloor, lifting up
14:08:32 DEBUG opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
14:08:32 DEBUG opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
14:08:32 DEBUG opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
14:08:32 DEBUG opendrift.models.oceandrift:582: 328 elements penetrated seafloor, lifting up
14:08:32 DEBUG opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
14:08:32 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
14:08:32 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
14:08:32 DEBUG opendrift.models.oceandrift:582: 307 elements penetrated seafloor, lifting up
14:08:32 DEBUG opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
14:08:32 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
14:08:32 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
14:08:32 DEBUG opendrift.models.oceandrift:582: 299 elements penetrated seafloor, lifting up
14:08:32 DEBUG opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
14:08:32 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
14:08:32 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
14:08:32 DEBUG opendrift.models.oceandrift:582: 302 elements penetrated seafloor, lifting up
14:08:32 DEBUG opendrift.models.oceandrift:600: 44 elements reached seafloor, set to bottom
14:08:32 DEBUG opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
14:08:32 DEBUG opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
14:08:32 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:32 DEBUG opendrift.models.basemodel:2945: 4549 active elements (0 deactivated)
14:08:32 DEBUG opendrift.models.basemodel:1658: to be seeded: 5451, already seeded 4549
14:08:32 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:08:32 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:32 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:32 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:32 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:32 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:32 DEBUG opendrift.models.basemodel:1253: Data needed for 4583 elements
14:08:32 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:32 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 11:00:00 (before)
2023-09-02 12:00:00 (after)
14:08:32 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 11:00:00) in space (linearNDFast)
14:08:32 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:32 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:32 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:32 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:32 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:32 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:32 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4949 (max)
14:08:32 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:32 DEBUG opendrift.models.basemodel:1527: 4583 active elements
14:08:32 DEBUG opendrift.models.basemodel:1538: 59.098513700418096 <- latitude -> 59.18947893621769
14:08:32 DEBUG opendrift.models.basemodel:1543: 10.904290700136745 <- longitude -> 11.04085765575841
14:08:32 DEBUG opendrift.models.basemodel:1548: -14.497075079557774 <- z -> 0.0
14:08:32 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:32 DEBUG opendrift.models.basemodel:836: Lifting 364 elements to seafloor.
14:08:32 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:32 INFO opendrift.models.basemodel:2882: 2023-09-02 11:56:21.121579 - step 132 of 216 - 4583 active elements (0 deactivated)
14:08:32 DEBUG opendrift.models.basemodel:2888: 5417 elements scheduled.
14:08:32 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:32 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:32 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:32 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:32 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:32 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:32 DEBUG opendrift.models.basemodel:1253: Data needed for 4583 elements
14:08:32 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:32 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:32 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:32 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:32 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:32 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:32 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:32 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:32 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:32 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:32 DEBUG opendrift.models.basemodel:1253: Data needed for 4583 elements
14:08:32 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:32 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 11:00:00 (before)
2023-09-02 12:00:00 (after)
14:08:33 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:33 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:33 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:33 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:33 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:33 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:33 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x24x5) for time after (2023-09-02 12:00:00)
14:08:33 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 11:00:00) in space (linearNDFast)
14:08:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:33 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 12:00:00) in space (linearNDFast)
14:08:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2917 elements, expanding data 1
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 41 elements, expanding data 2
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2917 elements, expanding data 1
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 41 elements, expanding data 2
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2974 elements, expanding data 1
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 242 elements, expanding data 2
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 3
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2974 elements, expanding data 1
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 242 elements, expanding data 2
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 3
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2974 elements, expanding data 1
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 242 elements, expanding data 2
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 3
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2974 elements, expanding data 1
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 242 elements, expanding data 2
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 3
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2974 elements, expanding data 1
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 242 elements, expanding data 2
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 3
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3855 elements, expanding data 1
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1686 elements, expanding data 2
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3855 elements, expanding data 1
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1686 elements, expanding data 2
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3855 elements, expanding data 1
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1686 elements, expanding data 2
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3855 elements, expanding data 1
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1686 elements, expanding data 2
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3855 elements, expanding data 1
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1686 elements, expanding data 2
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2917 elements, expanding data 1
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 41 elements, expanding data 2
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2917 elements, expanding data 1
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 41 elements, expanding data 2
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2917 elements, expanding data 1
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 41 elements, expanding data 2
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2917 elements, expanding data 1
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 41 elements, expanding data 2
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2917 elements, expanding data 1
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 41 elements, expanding data 2
14:08:33 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 11:00:00, weight 0.06) and
after (2023-09-02 12:00:00, weight 0.94) in time
14:08:33 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.09571987023604 and -58.959152901737205 degrees.
14:08:33 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.09571987023604 and -58.959152901737205 degrees.
14:08:33 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:33 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:33 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:33 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:33 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:33 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:33 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.802175 (min) 1.20191 (max)
14:08:33 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.00939 (min) 0.826851 (max)
14:08:33 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000160931 (min) 0.000670512 (max)
14:08:33 DEBUG opendrift.models.basemodel:1524: x_wind: -5.52501 (min) 8.74733 (max)
14:08:33 DEBUG opendrift.models.basemodel:1524: y_wind: -9.55225 (min) 5.59611 (max)
14:08:33 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:33 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:33 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:33 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:33 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:33 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:33 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:33 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4949 (max)
14:08:33 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:33 DEBUG opendrift.models.basemodel:1527: 4583 active elements
14:08:33 DEBUG opendrift.models.basemodel:1538: 59.098513700418096 <- latitude -> 59.18947893621769
14:08:33 DEBUG opendrift.models.basemodel:1543: 10.904290700136745 <- longitude -> 11.04085765575841
14:08:33 DEBUG opendrift.models.basemodel:1548: -14.497075079557774 <- z -> 0.0
14:08:33 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:33 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:33 DEBUG opendrift.models.physics_methods:1050: min: 0.051980, mean: 3.271236, max: 9.260723
14:08:33 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.051980, mean: 3.271236, max: 9.260723
14:08:33 DEBUG opendrift.models.basemodel:813: 750 elements hit coastline, moving back to water
14:08:33 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:08:33 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:33 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:33 DEBUG opendrift.models.physics_methods:828: Advecting 35 of 4583 elements above 0.100m with wind-sheared ocean current (0.031403 m/s - 0.171685 m/s)
14:08:33 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:33 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:33 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.1061228270741272
14:08:33 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:33 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:33 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:33 DEBUG opendrift.models.oceandrift:582: 525 elements penetrated seafloor, lifting up
14:08:33 DEBUG opendrift.models.oceandrift:600: 74 elements reached seafloor, set to bottom
14:08:33 DEBUG opendrift.models.basemodel:836: Lifting 74 elements to seafloor.
14:08:33 DEBUG opendrift.models.sedimentdrift:112: Settling 74 elements at seafloor
14:08:33 DEBUG opendrift.models.oceandrift:582: 406 elements penetrated seafloor, lifting up
14:08:33 DEBUG opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
14:08:33 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
14:08:33 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
14:08:33 DEBUG opendrift.models.oceandrift:582: 373 elements penetrated seafloor, lifting up
14:08:33 DEBUG opendrift.models.oceandrift:600: 52 elements reached seafloor, set to bottom
14:08:33 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
14:08:33 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
14:08:33 DEBUG opendrift.models.oceandrift:582: 370 elements penetrated seafloor, lifting up
14:08:33 DEBUG opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
14:08:33 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
14:08:33 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
14:08:33 DEBUG opendrift.models.oceandrift:582: 349 elements penetrated seafloor, lifting up
14:08:33 DEBUG opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
14:08:33 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
14:08:33 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
14:08:33 DEBUG opendrift.models.oceandrift:582: 364 elements penetrated seafloor, lifting up
14:08:33 DEBUG opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
14:08:33 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
14:08:33 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
14:08:33 DEBUG opendrift.models.oceandrift:582: 301 elements penetrated seafloor, lifting up
14:08:33 DEBUG opendrift.models.oceandrift:600: 56 elements reached seafloor, set to bottom
14:08:33 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
14:08:33 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
14:08:33 DEBUG opendrift.models.oceandrift:582: 344 elements penetrated seafloor, lifting up
14:08:33 DEBUG opendrift.models.oceandrift:600: 44 elements reached seafloor, set to bottom
14:08:33 DEBUG opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
14:08:33 DEBUG opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
14:08:33 DEBUG opendrift.models.oceandrift:582: 316 elements penetrated seafloor, lifting up
14:08:33 DEBUG opendrift.models.oceandrift:600: 29 elements reached seafloor, set to bottom
14:08:33 DEBUG opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
14:08:33 DEBUG opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
14:08:33 DEBUG opendrift.models.oceandrift:582: 331 elements penetrated seafloor, lifting up
14:08:33 DEBUG opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
14:08:33 DEBUG opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
14:08:33 DEBUG opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
14:08:33 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:33 DEBUG opendrift.models.basemodel:2945: 4583 active elements (0 deactivated)
14:08:33 DEBUG opendrift.models.basemodel:1658: to be seeded: 5417, already seeded 4583
14:08:33 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:08:33 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:33 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:33 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:33 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:33 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:33 DEBUG opendrift.models.basemodel:1253: Data needed for 4618 elements
14:08:33 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:33 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 12:00:00 (before)
2023-09-02 13:00:00 (after)
14:08:33 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 12:00:00) in space (linearNDFast)
14:08:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:33 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:33 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:33 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:33 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:33 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:33 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4305 (max)
14:08:33 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:33 DEBUG opendrift.models.basemodel:1527: 4618 active elements
14:08:33 DEBUG opendrift.models.basemodel:1538: 59.100042884735394 <- latitude -> 59.18930849098487
14:08:33 DEBUG opendrift.models.basemodel:1543: 10.899678455317849 <- longitude -> 11.037613343236679
14:08:33 DEBUG opendrift.models.basemodel:1548: -14.576452255249023 <- z -> 0.0
14:08:33 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:33 DEBUG opendrift.models.basemodel:836: Lifting 396 elements to seafloor.
14:08:33 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:33 INFO opendrift.models.basemodel:2882: 2023-09-02 12:06:21.121579 - step 133 of 216 - 4618 active elements (0 deactivated)
14:08:33 DEBUG opendrift.models.basemodel:2888: 5382 elements scheduled.
14:08:33 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:33 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:33 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:33 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:33 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:33 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:33 DEBUG opendrift.models.basemodel:1253: Data needed for 4618 elements
14:08:33 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:33 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:33 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:33 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:33 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:33 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:33 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:33 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:33 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:33 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:33 DEBUG opendrift.models.basemodel:1253: Data needed for 4618 elements
14:08:33 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:33 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 12:00:00 (before)
2023-09-02 13:00:00 (after)
14:08:34 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:34 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:34 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:34 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:34 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:34 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:34 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x24x5) for time after (2023-09-02 13:00:00)
14:08:34 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 12:00:00) in space (linearNDFast)
14:08:34 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:34 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 13:00:00) in space (linearNDFast)
14:08:34 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2984 elements, expanding data 1
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2984 elements, expanding data 1
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3041 elements, expanding data 1
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 238 elements, expanding data 2
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 3
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3041 elements, expanding data 1
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 238 elements, expanding data 2
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 3
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3041 elements, expanding data 1
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 238 elements, expanding data 2
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 3
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3041 elements, expanding data 1
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 238 elements, expanding data 2
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 3
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3041 elements, expanding data 1
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 238 elements, expanding data 2
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 3
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3893 elements, expanding data 1
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1764 elements, expanding data 2
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3893 elements, expanding data 1
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1764 elements, expanding data 2
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3893 elements, expanding data 1
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1764 elements, expanding data 2
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3893 elements, expanding data 1
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1764 elements, expanding data 2
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3893 elements, expanding data 1
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1764 elements, expanding data 2
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2984 elements, expanding data 1
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2984 elements, expanding data 1
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2984 elements, expanding data 1
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2984 elements, expanding data 1
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2984 elements, expanding data 1
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
14:08:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:34 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 12:00:00, weight 0.89) and
after (2023-09-02 13:00:00, weight 0.11) in time
14:08:34 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.100332101957235 and -58.96239721410248 degrees.
14:08:34 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.100332101957235 and -58.96239721410248 degrees.
14:08:34 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:34 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:34 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:34 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:34 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:34 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:34 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.720127 (min) 1.33364 (max)
14:08:34 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.13933 (min) 0.779493 (max)
14:08:34 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000143238 (min) 0.00065617 (max)
14:08:34 DEBUG opendrift.models.basemodel:1524: x_wind: -5.53528 (min) 9.07828 (max)
14:08:34 DEBUG opendrift.models.basemodel:1524: y_wind: -10.1529 (min) 4.38585 (max)
14:08:34 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:34 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:34 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:34 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:34 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:34 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:34 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:34 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4305 (max)
14:08:34 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:34 DEBUG opendrift.models.basemodel:1527: 4618 active elements
14:08:34 DEBUG opendrift.models.basemodel:1538: 59.100042884735394 <- latitude -> 59.18930849098487
14:08:34 DEBUG opendrift.models.basemodel:1543: 10.899678455317849 <- longitude -> 11.037613343236679
14:08:34 DEBUG opendrift.models.basemodel:1548: -14.576452255249023 <- z -> 0.0
14:08:34 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:34 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:34 DEBUG opendrift.models.physics_methods:1050: min: 0.014900, mean: 3.224267, max: 8.878897
14:08:34 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.014900, mean: 3.224267, max: 8.878897
14:08:34 DEBUG opendrift.models.basemodel:813: 811 elements hit coastline, moving back to water
14:08:34 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:08:34 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:34 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:34 DEBUG opendrift.models.physics_methods:828: Advecting 41 of 4618 elements above 0.100m with wind-sheared ocean current (0.010806 m/s - 0.172680 m/s)
14:08:34 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:34 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:34 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09755253844173431
14:08:34 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:34 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:34 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:34 DEBUG opendrift.models.oceandrift:582: 503 elements penetrated seafloor, lifting up
14:08:34 DEBUG opendrift.models.oceandrift:600: 56 elements reached seafloor, set to bottom
14:08:34 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
14:08:34 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
14:08:34 DEBUG opendrift.models.oceandrift:582: 460 elements penetrated seafloor, lifting up
14:08:34 DEBUG opendrift.models.oceandrift:600: 74 elements reached seafloor, set to bottom
14:08:34 DEBUG opendrift.models.basemodel:836: Lifting 74 elements to seafloor.
14:08:34 DEBUG opendrift.models.sedimentdrift:112: Settling 74 elements at seafloor
14:08:34 DEBUG opendrift.models.oceandrift:582: 375 elements penetrated seafloor, lifting up
14:08:34 DEBUG opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
14:08:34 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
14:08:34 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
14:08:34 DEBUG opendrift.models.oceandrift:582: 366 elements penetrated seafloor, lifting up
14:08:34 DEBUG opendrift.models.oceandrift:600: 44 elements reached seafloor, set to bottom
14:08:34 DEBUG opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
14:08:34 DEBUG opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
14:08:34 DEBUG opendrift.models.oceandrift:582: 385 elements penetrated seafloor, lifting up
14:08:34 DEBUG opendrift.models.oceandrift:600: 52 elements reached seafloor, set to bottom
14:08:34 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
14:08:34 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
14:08:34 DEBUG opendrift.models.oceandrift:582: 327 elements penetrated seafloor, lifting up
14:08:34 DEBUG opendrift.models.oceandrift:600: 65 elements reached seafloor, set to bottom
14:08:34 DEBUG opendrift.models.basemodel:836: Lifting 65 elements to seafloor.
14:08:34 DEBUG opendrift.models.sedimentdrift:112: Settling 65 elements at seafloor
14:08:34 DEBUG opendrift.models.oceandrift:582: 332 elements penetrated seafloor, lifting up
14:08:34 DEBUG opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
14:08:34 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
14:08:34 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
14:08:34 DEBUG opendrift.models.oceandrift:582: 343 elements penetrated seafloor, lifting up
14:08:34 DEBUG opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
14:08:34 DEBUG opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
14:08:34 DEBUG opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
14:08:34 DEBUG opendrift.models.oceandrift:582: 339 elements penetrated seafloor, lifting up
14:08:34 DEBUG opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
14:08:34 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
14:08:34 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
14:08:34 DEBUG opendrift.models.oceandrift:582: 300 elements penetrated seafloor, lifting up
14:08:34 DEBUG opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
14:08:34 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
14:08:34 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
14:08:34 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:34 DEBUG opendrift.models.basemodel:2945: 4618 active elements (0 deactivated)
14:08:34 DEBUG opendrift.models.basemodel:1658: to be seeded: 5382, already seeded 4618
14:08:34 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:08:34 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:34 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:34 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:34 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:34 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:34 DEBUG opendrift.models.basemodel:1253: Data needed for 4653 elements
14:08:34 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:34 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 12:00:00 (before)
2023-09-02 13:00:00 (after)
14:08:34 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 12:00:00) in space (linearNDFast)
14:08:34 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:34 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:34 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:34 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:34 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:34 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:34 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4335 (max)
14:08:34 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:34 DEBUG opendrift.models.basemodel:1527: 4653 active elements
14:08:34 DEBUG opendrift.models.basemodel:1538: 59.09990107827622 <- latitude -> 59.18885798169899
14:08:34 DEBUG opendrift.models.basemodel:1543: 10.900608729485182 <- longitude -> 11.041852441909109
14:08:34 DEBUG opendrift.models.basemodel:1548: -14.576452255249023 <- z -> 0.0
14:08:34 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:34 DEBUG opendrift.models.basemodel:836: Lifting 374 elements to seafloor.
14:08:34 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:34 INFO opendrift.models.basemodel:2882: 2023-09-02 12:16:21.121579 - step 134 of 216 - 4653 active elements (0 deactivated)
14:08:34 DEBUG opendrift.models.basemodel:2888: 5347 elements scheduled.
14:08:34 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:34 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:34 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:34 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:34 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:34 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:34 DEBUG opendrift.models.basemodel:1253: Data needed for 4653 elements
14:08:34 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:34 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:34 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:34 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:34 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:34 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:34 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:34 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:34 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:34 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:34 DEBUG opendrift.models.basemodel:1253: Data needed for 4653 elements
14:08:34 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:34 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 12:00:00 (before)
2023-09-02 13:00:00 (after)
14:08:35 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:35 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:35 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:35 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:35 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:35 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:35 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x24x5) for time after (2023-09-02 13:00:00)
14:08:35 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 12:00:00) in space (linearNDFast)
14:08:35 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:35 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 13:00:00) in space (linearNDFast)
14:08:35 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3022 elements, expanding data 1
14:08:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 2
14:08:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3022 elements, expanding data 1
14:08:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 2
14:08:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3088 elements, expanding data 1
14:08:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 225 elements, expanding data 2
14:08:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 23 elements, expanding data 3
14:08:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3088 elements, expanding data 1
14:08:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 225 elements, expanding data 2
14:08:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 23 elements, expanding data 3
14:08:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3088 elements, expanding data 1
14:08:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 225 elements, expanding data 2
14:08:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 23 elements, expanding data 3
14:08:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3088 elements, expanding data 1
14:08:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 225 elements, expanding data 2
14:08:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 23 elements, expanding data 3
14:08:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3088 elements, expanding data 1
14:08:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 225 elements, expanding data 2
14:08:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 23 elements, expanding data 3
14:08:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3937 elements, expanding data 1
14:08:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1801 elements, expanding data 2
14:08:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3937 elements, expanding data 1
14:08:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1801 elements, expanding data 2
14:08:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3937 elements, expanding data 1
14:08:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1801 elements, expanding data 2
14:08:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3937 elements, expanding data 1
14:08:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1801 elements, expanding data 2
14:08:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3937 elements, expanding data 1
14:08:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1801 elements, expanding data 2
14:08:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3022 elements, expanding data 1
14:08:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 2
14:08:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3022 elements, expanding data 1
14:08:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 2
14:08:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3022 elements, expanding data 1
14:08:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 2
14:08:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3022 elements, expanding data 1
14:08:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 2
14:08:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3022 elements, expanding data 1
14:08:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 2
14:08:35 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 12:00:00, weight 0.73) and
after (2023-09-02 13:00:00, weight 0.27) in time
14:08:35 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.099401841786296 and -58.958158120210236 degrees.
14:08:35 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.099401841786296 and -58.958158120210236 degrees.
14:08:35 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:35 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:35 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:35 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:35 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:35 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:35 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.831771 (min) 1.14981 (max)
14:08:35 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.00922 (min) 0.746358 (max)
14:08:35 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.00016882 (min) 0.000617836 (max)
14:08:35 DEBUG opendrift.models.basemodel:1524: x_wind: -6.47583 (min) 9.60205 (max)
14:08:35 DEBUG opendrift.models.basemodel:1524: y_wind: -9.82599 (min) 5.04884 (max)
14:08:35 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:35 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:35 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:35 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:35 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:35 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:35 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:35 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4335 (max)
14:08:35 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:35 DEBUG opendrift.models.basemodel:1527: 4653 active elements
14:08:35 DEBUG opendrift.models.basemodel:1538: 59.09990107827622 <- latitude -> 59.18885798169899
14:08:35 DEBUG opendrift.models.basemodel:1543: 10.900608729485182 <- longitude -> 11.041852441909109
14:08:35 DEBUG opendrift.models.basemodel:1548: -14.576452255249023 <- z -> 0.0
14:08:35 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:35 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:35 DEBUG opendrift.models.physics_methods:1050: min: 0.041311, mean: 3.138960, max: 8.821959
14:08:35 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.041311, mean: 3.138960, max: 8.821959
14:08:35 DEBUG opendrift.models.basemodel:813: 796 elements hit coastline, moving back to water
14:08:35 DEBUG opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
14:08:35 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:35 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:35 DEBUG opendrift.models.physics_methods:828: Advecting 37 of 4653 elements above 0.100m with wind-sheared ocean current (0.003484 m/s - 0.135708 m/s)
14:08:35 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:35 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:35 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09630544236906051
14:08:35 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:35 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:35 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:35 DEBUG opendrift.models.oceandrift:582: 475 elements penetrated seafloor, lifting up
14:08:35 DEBUG opendrift.models.oceandrift:600: 62 elements reached seafloor, set to bottom
14:08:35 DEBUG opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
14:08:35 DEBUG opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
14:08:35 DEBUG opendrift.models.oceandrift:582: 419 elements penetrated seafloor, lifting up
14:08:35 DEBUG opendrift.models.oceandrift:600: 59 elements reached seafloor, set to bottom
14:08:35 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
14:08:35 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
14:08:35 DEBUG opendrift.models.oceandrift:582: 388 elements penetrated seafloor, lifting up
14:08:35 DEBUG opendrift.models.oceandrift:600: 62 elements reached seafloor, set to bottom
14:08:35 DEBUG opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
14:08:35 DEBUG opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
14:08:35 DEBUG opendrift.models.oceandrift:582: 343 elements penetrated seafloor, lifting up
14:08:35 DEBUG opendrift.models.oceandrift:600: 52 elements reached seafloor, set to bottom
14:08:35 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
14:08:35 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
14:08:35 DEBUG opendrift.models.oceandrift:582: 337 elements penetrated seafloor, lifting up
14:08:35 DEBUG opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
14:08:35 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
14:08:35 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
14:08:35 DEBUG opendrift.models.oceandrift:582: 326 elements penetrated seafloor, lifting up
14:08:35 DEBUG opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
14:08:35 DEBUG opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
14:08:35 DEBUG opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
14:08:35 DEBUG opendrift.models.oceandrift:582: 320 elements penetrated seafloor, lifting up
14:08:35 DEBUG opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
14:08:35 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
14:08:35 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
14:08:35 DEBUG opendrift.models.oceandrift:582: 325 elements penetrated seafloor, lifting up
14:08:35 DEBUG opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
14:08:35 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
14:08:35 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
14:08:35 DEBUG opendrift.models.oceandrift:582: 316 elements penetrated seafloor, lifting up
14:08:35 DEBUG opendrift.models.oceandrift:600: 40 elements reached seafloor, set to bottom
14:08:35 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
14:08:35 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
14:08:35 DEBUG opendrift.models.oceandrift:582: 319 elements penetrated seafloor, lifting up
14:08:35 DEBUG opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
14:08:35 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
14:08:35 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
14:08:35 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:35 DEBUG opendrift.models.basemodel:2945: 4653 active elements (0 deactivated)
14:08:35 DEBUG opendrift.models.basemodel:1658: to be seeded: 5347, already seeded 4653
14:08:35 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:08:35 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:35 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:35 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:35 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:35 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:35 DEBUG opendrift.models.basemodel:1253: Data needed for 4688 elements
14:08:35 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:35 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 12:00:00 (before)
2023-09-02 13:00:00 (after)
14:08:35 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 12:00:00) in space (linearNDFast)
14:08:35 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:35 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:35 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:35 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:35 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:35 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:35 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.41 (max)
14:08:35 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:35 DEBUG opendrift.models.basemodel:1527: 4688 active elements
14:08:35 DEBUG opendrift.models.basemodel:1538: 59.099998401335405 <- latitude -> 59.18729479913419
14:08:35 DEBUG opendrift.models.basemodel:1543: 10.901590609466584 <- longitude -> 11.040784984405095
14:08:35 DEBUG opendrift.models.basemodel:1548: -14.95155226056636 <- z -> 0.0
14:08:35 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:35 DEBUG opendrift.models.basemodel:836: Lifting 379 elements to seafloor.
14:08:35 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:35 INFO opendrift.models.basemodel:2882: 2023-09-02 12:26:21.121579 - step 135 of 216 - 4688 active elements (0 deactivated)
14:08:35 DEBUG opendrift.models.basemodel:2888: 5312 elements scheduled.
14:08:35 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:35 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:35 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:35 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:35 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:35 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:35 DEBUG opendrift.models.basemodel:1253: Data needed for 4688 elements
14:08:35 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:35 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:35 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:35 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:35 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:35 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:35 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:35 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:35 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:35 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:35 DEBUG opendrift.models.basemodel:1253: Data needed for 4688 elements
14:08:35 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:35 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 12:00:00 (before)
2023-09-02 13:00:00 (after)
14:08:36 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:36 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:36 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:36 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:36 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:36 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:36 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x24x5) for time after (2023-09-02 13:00:00)
14:08:36 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 12:00:00) in space (linearNDFast)
14:08:36 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:36 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 13:00:00) in space (linearNDFast)
14:08:36 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3066 elements, expanding data 1
14:08:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 2
14:08:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3066 elements, expanding data 1
14:08:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 2
14:08:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3128 elements, expanding data 1
14:08:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 246 elements, expanding data 2
14:08:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 3
14:08:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3128 elements, expanding data 1
14:08:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 246 elements, expanding data 2
14:08:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 3
14:08:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3128 elements, expanding data 1
14:08:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 246 elements, expanding data 2
14:08:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 3
14:08:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3128 elements, expanding data 1
14:08:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 246 elements, expanding data 2
14:08:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 3
14:08:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3128 elements, expanding data 1
14:08:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 246 elements, expanding data 2
14:08:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 3
14:08:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3971 elements, expanding data 1
14:08:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1807 elements, expanding data 2
14:08:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3971 elements, expanding data 1
14:08:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1807 elements, expanding data 2
14:08:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3971 elements, expanding data 1
14:08:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1807 elements, expanding data 2
14:08:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3971 elements, expanding data 1
14:08:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1807 elements, expanding data 2
14:08:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3971 elements, expanding data 1
14:08:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1807 elements, expanding data 2
14:08:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3066 elements, expanding data 1
14:08:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 2
14:08:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3066 elements, expanding data 1
14:08:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 2
14:08:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3066 elements, expanding data 1
14:08:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 2
14:08:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3066 elements, expanding data 1
14:08:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 2
14:08:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3066 elements, expanding data 1
14:08:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 2
14:08:36 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 12:00:00, weight 0.56) and
after (2023-09-02 13:00:00, weight 0.44) in time
14:08:36 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.098419964715234 and -58.95922556579698 degrees.
14:08:36 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.098419964715234 and -58.95922556579698 degrees.
14:08:36 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:36 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:36 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:36 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:36 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:36 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:36 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.806874 (min) 1.19774 (max)
14:08:36 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.952796 (min) 0.745101 (max)
14:08:36 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000144309 (min) 0.000646794 (max)
14:08:36 DEBUG opendrift.models.basemodel:1524: x_wind: -5.51726 (min) 8.96151 (max)
14:08:36 DEBUG opendrift.models.basemodel:1524: y_wind: -9.27288 (min) 6.34341 (max)
14:08:36 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:36 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:36 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:36 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:36 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:36 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:36 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:36 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.41 (max)
14:08:36 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:36 DEBUG opendrift.models.basemodel:1527: 4688 active elements
14:08:36 DEBUG opendrift.models.basemodel:1538: 59.099998401335405 <- latitude -> 59.18729479913419
14:08:36 DEBUG opendrift.models.basemodel:1543: 10.901590609466584 <- longitude -> 11.040784984405095
14:08:36 DEBUG opendrift.models.basemodel:1548: -14.95155226056636 <- z -> 0.0
14:08:36 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:36 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:36 DEBUG opendrift.models.physics_methods:1050: min: 0.044706, mean: 3.105774, max: 9.374108
14:08:36 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.044706, mean: 3.105774, max: 9.374108
14:08:36 DEBUG opendrift.models.basemodel:813: 766 elements hit coastline, moving back to water
14:08:36 DEBUG opendrift.models.basemodel:836: Lifting 149 elements to seafloor.
14:08:36 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:36 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:36 DEBUG opendrift.models.physics_methods:828: Advecting 39 of 4688 elements above 0.100m with wind-sheared ocean current (0.012179 m/s - 0.142627 m/s)
14:08:36 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:36 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:36 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10873729644544601
14:08:36 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:36 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:36 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:36 DEBUG opendrift.models.oceandrift:582: 500 elements penetrated seafloor, lifting up
14:08:36 DEBUG opendrift.models.oceandrift:600: 64 elements reached seafloor, set to bottom
14:08:36 DEBUG opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
14:08:36 DEBUG opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
14:08:36 DEBUG opendrift.models.oceandrift:582: 386 elements penetrated seafloor, lifting up
14:08:36 DEBUG opendrift.models.oceandrift:600: 54 elements reached seafloor, set to bottom
14:08:36 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
14:08:36 DEBUG opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
14:08:36 DEBUG opendrift.models.oceandrift:582: 369 elements penetrated seafloor, lifting up
14:08:36 DEBUG opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
14:08:36 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
14:08:36 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
14:08:36 DEBUG opendrift.models.oceandrift:582: 370 elements penetrated seafloor, lifting up
14:08:36 DEBUG opendrift.models.oceandrift:600: 65 elements reached seafloor, set to bottom
14:08:36 DEBUG opendrift.models.basemodel:836: Lifting 65 elements to seafloor.
14:08:36 DEBUG opendrift.models.sedimentdrift:112: Settling 65 elements at seafloor
14:08:36 DEBUG opendrift.models.oceandrift:582: 335 elements penetrated seafloor, lifting up
14:08:36 DEBUG opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
14:08:36 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
14:08:36 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
14:08:36 DEBUG opendrift.models.oceandrift:582: 334 elements penetrated seafloor, lifting up
14:08:36 DEBUG opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
14:08:36 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
14:08:36 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
14:08:36 DEBUG opendrift.models.oceandrift:582: 338 elements penetrated seafloor, lifting up
14:08:36 DEBUG opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
14:08:36 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
14:08:36 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
14:08:36 DEBUG opendrift.models.oceandrift:582: 301 elements penetrated seafloor, lifting up
14:08:36 DEBUG opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
14:08:36 DEBUG opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
14:08:36 DEBUG opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
14:08:36 DEBUG opendrift.models.oceandrift:582: 290 elements penetrated seafloor, lifting up
14:08:36 DEBUG opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
14:08:36 DEBUG opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
14:08:36 DEBUG opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
14:08:36 DEBUG opendrift.models.oceandrift:582: 321 elements penetrated seafloor, lifting up
14:08:36 DEBUG opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
14:08:36 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
14:08:36 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
14:08:36 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:36 DEBUG opendrift.models.basemodel:2945: 4688 active elements (0 deactivated)
14:08:36 DEBUG opendrift.models.basemodel:1658: to be seeded: 5312, already seeded 4688
14:08:36 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:08:36 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:36 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:36 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:36 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:36 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:36 DEBUG opendrift.models.basemodel:1253: Data needed for 4722 elements
14:08:36 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:36 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 12:00:00 (before)
2023-09-02 13:00:00 (after)
14:08:36 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 12:00:00) in space (linearNDFast)
14:08:36 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:36 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:36 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:36 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:36 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:36 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:36 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3695 (max)
14:08:36 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:36 DEBUG opendrift.models.basemodel:1527: 4722 active elements
14:08:36 DEBUG opendrift.models.basemodel:1538: 59.10200036765178 <- latitude -> 59.18715211211858
14:08:36 DEBUG opendrift.models.basemodel:1543: 10.901478376811106 <- longitude -> 11.04018314775639
14:08:36 DEBUG opendrift.models.basemodel:1548: -14.576452255249023 <- z -> 0.0
14:08:36 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:36 DEBUG opendrift.models.basemodel:836: Lifting 370 elements to seafloor.
14:08:36 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:36 INFO opendrift.models.basemodel:2882: 2023-09-02 12:36:21.121579 - step 136 of 216 - 4722 active elements (0 deactivated)
14:08:36 DEBUG opendrift.models.basemodel:2888: 5278 elements scheduled.
14:08:36 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:36 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:36 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:36 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:36 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:36 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:36 DEBUG opendrift.models.basemodel:1253: Data needed for 4722 elements
14:08:36 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:36 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:36 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:36 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:36 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:36 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:36 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:36 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:36 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:36 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:36 DEBUG opendrift.models.basemodel:1253: Data needed for 4722 elements
14:08:36 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:36 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 12:00:00 (before)
2023-09-02 13:00:00 (after)
14:08:37 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:37 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:37 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:37 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:37 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:37 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:37 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x24x5) for time after (2023-09-02 13:00:00)
14:08:37 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 12:00:00) in space (linearNDFast)
14:08:37 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:37 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 13:00:00) in space (linearNDFast)
14:08:37 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3102 elements, expanding data 1
14:08:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 2
14:08:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3102 elements, expanding data 1
14:08:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 2
14:08:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3162 elements, expanding data 1
14:08:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 251 elements, expanding data 2
14:08:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 3
14:08:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3162 elements, expanding data 1
14:08:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 251 elements, expanding data 2
14:08:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 3
14:08:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3162 elements, expanding data 1
14:08:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 251 elements, expanding data 2
14:08:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 3
14:08:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3162 elements, expanding data 1
14:08:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 251 elements, expanding data 2
14:08:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 3
14:08:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3162 elements, expanding data 1
14:08:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 251 elements, expanding data 2
14:08:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 3
14:08:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3989 elements, expanding data 1
14:08:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1844 elements, expanding data 2
14:08:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3989 elements, expanding data 1
14:08:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1844 elements, expanding data 2
14:08:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3989 elements, expanding data 1
14:08:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1844 elements, expanding data 2
14:08:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3989 elements, expanding data 1
14:08:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1844 elements, expanding data 2
14:08:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3989 elements, expanding data 1
14:08:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1844 elements, expanding data 2
14:08:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3102 elements, expanding data 1
14:08:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 2
14:08:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3102 elements, expanding data 1
14:08:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 2
14:08:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3102 elements, expanding data 1
14:08:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 2
14:08:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3102 elements, expanding data 1
14:08:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 2
14:08:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3102 elements, expanding data 1
14:08:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 2
14:08:37 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 12:00:00, weight 0.39) and
after (2023-09-02 13:00:00, weight 0.61) in time
14:08:37 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.0985321958463 and -58.95982741507353 degrees.
14:08:37 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.0985321958463 and -58.95982741507353 degrees.
14:08:37 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:37 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:37 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:37 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:37 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:37 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:37 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.790943 (min) 1.28404 (max)
14:08:37 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.05833 (min) 0.92381 (max)
14:08:37 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000124888 (min) 0.000647252 (max)
14:08:37 DEBUG opendrift.models.basemodel:1524: x_wind: -5.04345 (min) 8.3695 (max)
14:08:37 DEBUG opendrift.models.basemodel:1524: y_wind: -9.92095 (min) 5.59808 (max)
14:08:37 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:37 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:37 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:37 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:37 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:37 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:37 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:37 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3695 (max)
14:08:37 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:37 DEBUG opendrift.models.basemodel:1527: 4722 active elements
14:08:37 DEBUG opendrift.models.basemodel:1538: 59.10200036765178 <- latitude -> 59.18715211211858
14:08:37 DEBUG opendrift.models.basemodel:1543: 10.901478376811106 <- longitude -> 11.04018314775639
14:08:37 DEBUG opendrift.models.basemodel:1548: -14.576452255249023 <- z -> 0.0
14:08:37 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:37 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:37 DEBUG opendrift.models.physics_methods:1050: min: 0.002497, mean: 3.008204, max: 8.509773
14:08:37 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.002497, mean: 3.008204, max: 8.509773
14:08:37 DEBUG opendrift.models.basemodel:813: 832 elements hit coastline, moving back to water
14:08:37 DEBUG opendrift.models.basemodel:836: Lifting 147 elements to seafloor.
14:08:37 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:37 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:37 DEBUG opendrift.models.physics_methods:828: Advecting 40 of 4722 elements above 0.100m with wind-sheared ocean current (0.001739 m/s - 0.115952 m/s)
14:08:37 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:37 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:37 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08961033969028473
14:08:37 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:37 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:37 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:37 DEBUG opendrift.models.oceandrift:582: 480 elements penetrated seafloor, lifting up
14:08:37 DEBUG opendrift.models.oceandrift:600: 60 elements reached seafloor, set to bottom
14:08:37 DEBUG opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
14:08:37 DEBUG opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
14:08:37 DEBUG opendrift.models.oceandrift:582: 415 elements penetrated seafloor, lifting up
14:08:37 DEBUG opendrift.models.oceandrift:600: 62 elements reached seafloor, set to bottom
14:08:37 DEBUG opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
14:08:37 DEBUG opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
14:08:37 DEBUG opendrift.models.oceandrift:582: 385 elements penetrated seafloor, lifting up
14:08:37 DEBUG opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
14:08:37 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
14:08:37 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
14:08:37 DEBUG opendrift.models.oceandrift:582: 367 elements penetrated seafloor, lifting up
14:08:37 DEBUG opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
14:08:37 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
14:08:37 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
14:08:37 DEBUG opendrift.models.oceandrift:582: 349 elements penetrated seafloor, lifting up
14:08:37 DEBUG opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
14:08:37 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
14:08:37 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
14:08:37 DEBUG opendrift.models.oceandrift:582: 339 elements penetrated seafloor, lifting up
14:08:37 DEBUG opendrift.models.oceandrift:600: 52 elements reached seafloor, set to bottom
14:08:37 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
14:08:37 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
14:08:37 DEBUG opendrift.models.oceandrift:582: 311 elements penetrated seafloor, lifting up
14:08:37 DEBUG opendrift.models.oceandrift:600: 52 elements reached seafloor, set to bottom
14:08:37 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
14:08:37 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
14:08:37 DEBUG opendrift.models.oceandrift:582: 341 elements penetrated seafloor, lifting up
14:08:37 DEBUG opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
14:08:37 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
14:08:37 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
14:08:37 DEBUG opendrift.models.oceandrift:582: 303 elements penetrated seafloor, lifting up
14:08:37 DEBUG opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
14:08:37 DEBUG opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
14:08:37 DEBUG opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
14:08:37 DEBUG opendrift.models.oceandrift:582: 292 elements penetrated seafloor, lifting up
14:08:37 DEBUG opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
14:08:37 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
14:08:37 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
14:08:37 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:37 DEBUG opendrift.models.basemodel:2945: 4722 active elements (0 deactivated)
14:08:37 DEBUG opendrift.models.basemodel:1658: to be seeded: 5278, already seeded 4722
14:08:37 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:08:37 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:37 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:37 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:37 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:37 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:37 DEBUG opendrift.models.basemodel:1253: Data needed for 4757 elements
14:08:37 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:37 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 12:00:00 (before)
2023-09-02 13:00:00 (after)
14:08:37 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 12:00:00) in space (linearNDFast)
14:08:37 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:37 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:37 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:37 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:37 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:37 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:37 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3513 (max)
14:08:37 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:37 DEBUG opendrift.models.basemodel:1527: 4757 active elements
14:08:37 DEBUG opendrift.models.basemodel:1538: 59.10311612087753 <- latitude -> 59.18697155498127
14:08:37 DEBUG opendrift.models.basemodel:1543: 10.900839990653585 <- longitude -> 11.043458550576256
14:08:37 DEBUG opendrift.models.basemodel:1548: -15.359483947753906 <- z -> 0.0
14:08:37 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:37 DEBUG opendrift.models.basemodel:836: Lifting 372 elements to seafloor.
14:08:37 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:37 INFO opendrift.models.basemodel:2882: 2023-09-02 12:46:21.121579 - step 137 of 216 - 4757 active elements (0 deactivated)
14:08:37 DEBUG opendrift.models.basemodel:2888: 5243 elements scheduled.
14:08:37 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:37 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:37 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:37 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:37 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:37 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:37 DEBUG opendrift.models.basemodel:1253: Data needed for 4757 elements
14:08:37 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:37 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:37 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:37 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:37 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:37 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:37 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:37 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:37 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:37 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:37 DEBUG opendrift.models.basemodel:1253: Data needed for 4757 elements
14:08:37 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:37 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 12:00:00 (before)
2023-09-02 13:00:00 (after)
14:08:38 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:38 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:38 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:38 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:38 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:38 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:38 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x24x6) for time after (2023-09-02 13:00:00)
14:08:38 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 12:00:00) in space (linearNDFast)
14:08:38 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:38 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 13:00:00) in space (linearNDFast)
14:08:38 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3122 elements, expanding data 1
14:08:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
14:08:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3122 elements, expanding data 1
14:08:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
14:08:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3183 elements, expanding data 1
14:08:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 251 elements, expanding data 2
14:08:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 3
14:08:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3183 elements, expanding data 1
14:08:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 251 elements, expanding data 2
14:08:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 3
14:08:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3183 elements, expanding data 1
14:08:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 251 elements, expanding data 2
14:08:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 3
14:08:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3183 elements, expanding data 1
14:08:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 251 elements, expanding data 2
14:08:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 3
14:08:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3183 elements, expanding data 1
14:08:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 251 elements, expanding data 2
14:08:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 3
14:08:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3183 elements, expanding data 1
14:08:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 251 elements, expanding data 2
14:08:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 3
14:08:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4043 elements, expanding data 1
14:08:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1874 elements, expanding data 2
14:08:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4043 elements, expanding data 1
14:08:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1874 elements, expanding data 2
14:08:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4043 elements, expanding data 1
14:08:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1874 elements, expanding data 2
14:08:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4043 elements, expanding data 1
14:08:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1874 elements, expanding data 2
14:08:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4043 elements, expanding data 1
14:08:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1874 elements, expanding data 2
14:08:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4043 elements, expanding data 1
14:08:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1874 elements, expanding data 2
14:08:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3122 elements, expanding data 1
14:08:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
14:08:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3122 elements, expanding data 1
14:08:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
14:08:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3122 elements, expanding data 1
14:08:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
14:08:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3122 elements, expanding data 1
14:08:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
14:08:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3122 elements, expanding data 1
14:08:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
14:08:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3122 elements, expanding data 1
14:08:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
14:08:38 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 12:00:00, weight 0.23) and
after (2023-09-02 13:00:00, weight 0.77) in time
14:08:38 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.099170584625924 and -58.956552002194165 degrees.
14:08:38 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.099170584625924 and -58.956552002194165 degrees.
14:08:38 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:38 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:38 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:38 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:38 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:38 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:38 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.727471 (min) 1.28559 (max)
14:08:38 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.976471 (min) 0.905818 (max)
14:08:38 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000135226 (min) 0.00070064 (max)
14:08:38 DEBUG opendrift.models.basemodel:1524: x_wind: -4.91561 (min) 9.50765 (max)
14:08:38 DEBUG opendrift.models.basemodel:1524: y_wind: -9.62328 (min) 6.26975 (max)
14:08:38 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:38 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:38 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:38 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:38 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:38 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:38 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:38 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3513 (max)
14:08:38 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:38 DEBUG opendrift.models.basemodel:1527: 4757 active elements
14:08:38 DEBUG opendrift.models.basemodel:1538: 59.10311612087753 <- latitude -> 59.18697155498127
14:08:38 DEBUG opendrift.models.basemodel:1543: 10.900839990653585 <- longitude -> 11.043458550576256
14:08:38 DEBUG opendrift.models.basemodel:1548: -15.351280212402344 <- z -> 0.0
14:08:38 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:38 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:38 DEBUG opendrift.models.physics_methods:1050: min: 0.068525, mean: 2.957853, max: 10.222420
14:08:38 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.068525, mean: 2.957853, max: 10.222420
14:08:38 DEBUG opendrift.models.basemodel:813: 824 elements hit coastline, moving back to water
14:08:38 DEBUG opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
14:08:38 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:38 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:38 DEBUG opendrift.models.physics_methods:828: Advecting 39 of 4757 elements above 0.100m with wind-sheared ocean current (0.008031 m/s - 0.142588 m/s)
14:08:38 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:38 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:38 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.12930742984159468
14:08:38 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:38 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:38 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:38 DEBUG opendrift.models.oceandrift:582: 521 elements penetrated seafloor, lifting up
14:08:38 DEBUG opendrift.models.oceandrift:600: 65 elements reached seafloor, set to bottom
14:08:38 DEBUG opendrift.models.basemodel:836: Lifting 65 elements to seafloor.
14:08:38 DEBUG opendrift.models.sedimentdrift:112: Settling 65 elements at seafloor
14:08:38 DEBUG opendrift.models.oceandrift:582: 410 elements penetrated seafloor, lifting up
14:08:38 DEBUG opendrift.models.oceandrift:600: 72 elements reached seafloor, set to bottom
14:08:38 DEBUG opendrift.models.basemodel:836: Lifting 72 elements to seafloor.
14:08:38 DEBUG opendrift.models.sedimentdrift:112: Settling 72 elements at seafloor
14:08:38 DEBUG opendrift.models.oceandrift:582: 361 elements penetrated seafloor, lifting up
14:08:38 DEBUG opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
14:08:38 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
14:08:38 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
14:08:38 DEBUG opendrift.models.oceandrift:582: 346 elements penetrated seafloor, lifting up
14:08:38 DEBUG opendrift.models.oceandrift:600: 52 elements reached seafloor, set to bottom
14:08:38 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
14:08:38 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
14:08:38 DEBUG opendrift.models.oceandrift:582: 371 elements penetrated seafloor, lifting up
14:08:38 DEBUG opendrift.models.oceandrift:600: 54 elements reached seafloor, set to bottom
14:08:38 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
14:08:38 DEBUG opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
14:08:38 DEBUG opendrift.models.oceandrift:582: 349 elements penetrated seafloor, lifting up
14:08:38 DEBUG opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
14:08:38 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
14:08:38 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
14:08:38 DEBUG opendrift.models.oceandrift:582: 343 elements penetrated seafloor, lifting up
14:08:38 DEBUG opendrift.models.oceandrift:600: 60 elements reached seafloor, set to bottom
14:08:38 DEBUG opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
14:08:38 DEBUG opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
14:08:38 DEBUG opendrift.models.oceandrift:582: 304 elements penetrated seafloor, lifting up
14:08:38 DEBUG opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
14:08:38 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
14:08:38 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
14:08:38 DEBUG opendrift.models.oceandrift:582: 323 elements penetrated seafloor, lifting up
14:08:38 DEBUG opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
14:08:38 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
14:08:38 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
14:08:38 DEBUG opendrift.models.oceandrift:582: 304 elements penetrated seafloor, lifting up
14:08:38 DEBUG opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
14:08:38 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
14:08:38 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
14:08:38 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:38 DEBUG opendrift.models.basemodel:2945: 4757 active elements (0 deactivated)
14:08:38 DEBUG opendrift.models.basemodel:1658: to be seeded: 5243, already seeded 4757
14:08:38 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:08:38 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:38 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:38 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:38 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:38 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:38 DEBUG opendrift.models.basemodel:1253: Data needed for 4792 elements
14:08:38 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:38 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 12:00:00 (before)
2023-09-02 13:00:00 (after)
14:08:38 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 12:00:00) in space (linearNDFast)
14:08:38 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:38 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:38 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:38 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:38 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:38 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:38 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3644 (max)
14:08:38 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:38 DEBUG opendrift.models.basemodel:1527: 4792 active elements
14:08:38 DEBUG opendrift.models.basemodel:1538: 59.10313300009995 <- latitude -> 59.18738986715711
14:08:38 DEBUG opendrift.models.basemodel:1543: 10.899174574938476 <- longitude -> 11.039976774858257
14:08:38 DEBUG opendrift.models.basemodel:1548: -14.548383712768555 <- z -> 0.0
14:08:38 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:38 DEBUG opendrift.models.basemodel:836: Lifting 420 elements to seafloor.
14:08:38 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:38 INFO opendrift.models.basemodel:2882: 2023-09-02 12:56:21.121579 - step 138 of 216 - 4792 active elements (0 deactivated)
14:08:38 DEBUG opendrift.models.basemodel:2888: 5208 elements scheduled.
14:08:38 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:38 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:38 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:38 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:38 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:38 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:38 DEBUG opendrift.models.basemodel:1253: Data needed for 4792 elements
14:08:38 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:38 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:38 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:38 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:38 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:38 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:38 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:38 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:38 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:38 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:38 DEBUG opendrift.models.basemodel:1253: Data needed for 4792 elements
14:08:38 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:38 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 12:00:00 (before)
2023-09-02 13:00:00 (after)
14:08:39 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:39 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:39 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:39 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:39 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:39 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:39 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x24x5) for time after (2023-09-02 13:00:00)
14:08:39 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 12:00:00) in space (linearNDFast)
14:08:39 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:39 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 13:00:00) in space (linearNDFast)
14:08:39 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3134 elements, expanding data 1
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 2
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3134 elements, expanding data 1
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 2
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3201 elements, expanding data 1
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 245 elements, expanding data 2
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 3
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3201 elements, expanding data 1
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 245 elements, expanding data 2
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 3
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3201 elements, expanding data 1
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 245 elements, expanding data 2
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 3
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3201 elements, expanding data 1
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 245 elements, expanding data 2
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 3
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3201 elements, expanding data 1
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 245 elements, expanding data 2
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 3
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4061 elements, expanding data 1
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1870 elements, expanding data 2
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4061 elements, expanding data 1
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1870 elements, expanding data 2
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4061 elements, expanding data 1
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1870 elements, expanding data 2
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4061 elements, expanding data 1
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1870 elements, expanding data 2
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4061 elements, expanding data 1
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1870 elements, expanding data 2
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3134 elements, expanding data 1
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 2
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3134 elements, expanding data 1
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 2
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3134 elements, expanding data 1
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 2
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3134 elements, expanding data 1
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 2
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3134 elements, expanding data 1
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 2
14:08:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:39 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 12:00:00, weight 0.06) and
after (2023-09-02 13:00:00, weight 0.94) in time
14:08:39 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.10083599015163 and -58.96003378961663 degrees.
14:08:39 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.10083599015163 and -58.96003378961663 degrees.
14:08:39 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:39 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:39 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:39 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:39 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:39 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:39 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.798647 (min) 1.2666 (max)
14:08:39 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.02499 (min) 0.833851 (max)
14:08:39 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000292104 (min) 0.000798092 (max)
14:08:39 DEBUG opendrift.models.basemodel:1524: x_wind: -5.54285 (min) 8.79874 (max)
14:08:39 DEBUG opendrift.models.basemodel:1524: y_wind: -8.56669 (min) 5.9618 (max)
14:08:39 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:39 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:39 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:39 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:39 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:39 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:39 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:39 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3644 (max)
14:08:39 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:39 DEBUG opendrift.models.basemodel:1527: 4792 active elements
14:08:39 DEBUG opendrift.models.basemodel:1538: 59.10313300009995 <- latitude -> 59.18738986715711
14:08:39 DEBUG opendrift.models.basemodel:1543: 10.899174574938476 <- longitude -> 11.039976774858257
14:08:39 DEBUG opendrift.models.basemodel:1548: -14.548383712768555 <- z -> 0.0
14:08:39 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:39 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:39 DEBUG opendrift.models.physics_methods:1050: min: 0.055843, mean: 2.961175, max: 8.315212
14:08:39 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.055843, mean: 2.961175, max: 8.315212
14:08:39 DEBUG opendrift.models.basemodel:813: 833 elements hit coastline, moving back to water
14:08:39 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:08:39 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:39 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:39 DEBUG opendrift.models.physics_methods:828: Advecting 37 of 4792 elements above 0.100m with wind-sheared ocean current (0.008673 m/s - 0.152328 m/s)
14:08:39 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:39 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:39 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08555980879314422
14:08:39 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:39 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:39 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:39 DEBUG opendrift.models.oceandrift:582: 518 elements penetrated seafloor, lifting up
14:08:39 DEBUG opendrift.models.oceandrift:600: 74 elements reached seafloor, set to bottom
14:08:39 DEBUG opendrift.models.basemodel:836: Lifting 74 elements to seafloor.
14:08:39 DEBUG opendrift.models.sedimentdrift:112: Settling 74 elements at seafloor
14:08:39 DEBUG opendrift.models.oceandrift:582: 417 elements penetrated seafloor, lifting up
14:08:39 DEBUG opendrift.models.oceandrift:600: 54 elements reached seafloor, set to bottom
14:08:39 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
14:08:39 DEBUG opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
14:08:39 DEBUG opendrift.models.oceandrift:582: 392 elements penetrated seafloor, lifting up
14:08:39 DEBUG opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
14:08:39 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
14:08:39 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
14:08:39 DEBUG opendrift.models.oceandrift:582: 406 elements penetrated seafloor, lifting up
14:08:39 DEBUG opendrift.models.oceandrift:600: 56 elements reached seafloor, set to bottom
14:08:39 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
14:08:39 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
14:08:39 DEBUG opendrift.models.oceandrift:582: 376 elements penetrated seafloor, lifting up
14:08:39 DEBUG opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
14:08:39 DEBUG opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
14:08:39 DEBUG opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
14:08:39 DEBUG opendrift.models.oceandrift:582: 322 elements penetrated seafloor, lifting up
14:08:39 DEBUG opendrift.models.oceandrift:600: 52 elements reached seafloor, set to bottom
14:08:39 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
14:08:39 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
14:08:39 DEBUG opendrift.models.oceandrift:582: 327 elements penetrated seafloor, lifting up
14:08:39 DEBUG opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
14:08:39 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
14:08:39 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
14:08:39 DEBUG opendrift.models.oceandrift:582: 347 elements penetrated seafloor, lifting up
14:08:39 DEBUG opendrift.models.oceandrift:600: 52 elements reached seafloor, set to bottom
14:08:39 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
14:08:39 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
14:08:39 DEBUG opendrift.models.oceandrift:582: 311 elements penetrated seafloor, lifting up
14:08:39 DEBUG opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
14:08:39 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
14:08:39 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
14:08:39 DEBUG opendrift.models.oceandrift:582: 316 elements penetrated seafloor, lifting up
14:08:39 DEBUG opendrift.models.oceandrift:600: 42 elements reached seafloor, set to bottom
14:08:39 DEBUG opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
14:08:39 DEBUG opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
14:08:39 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:39 DEBUG opendrift.models.basemodel:2945: 4792 active elements (0 deactivated)
14:08:39 DEBUG opendrift.models.basemodel:1658: to be seeded: 5208, already seeded 4792
14:08:39 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:08:39 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:39 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:39 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:39 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:39 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:39 DEBUG opendrift.models.basemodel:1253: Data needed for 4826 elements
14:08:39 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:39 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 13:00:00 (before)
2023-09-02 14:00:00 (after)
14:08:39 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 13:00:00) in space (linearNDFast)
14:08:39 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:39 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:39 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:39 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:39 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:39 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:39 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3228 (max)
14:08:39 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:39 DEBUG opendrift.models.basemodel:1527: 4826 active elements
14:08:39 DEBUG opendrift.models.basemodel:1538: 59.103859078532835 <- latitude -> 59.18797078306291
14:08:39 DEBUG opendrift.models.basemodel:1543: 10.903422220557072 <- longitude -> 11.036986809485839
14:08:39 DEBUG opendrift.models.basemodel:1548: -14.538383712768555 <- z -> 0.0
14:08:39 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:39 DEBUG opendrift.models.basemodel:836: Lifting 355 elements to seafloor.
14:08:39 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:39 INFO opendrift.models.basemodel:2882: 2023-09-02 13:06:21.121579 - step 139 of 216 - 4826 active elements (0 deactivated)
14:08:39 DEBUG opendrift.models.basemodel:2888: 5174 elements scheduled.
14:08:39 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:39 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:39 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:39 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:39 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:39 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:39 DEBUG opendrift.models.basemodel:1253: Data needed for 4826 elements
14:08:39 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:39 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:39 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:39 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:39 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:39 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:39 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:39 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:39 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:39 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:39 DEBUG opendrift.models.basemodel:1253: Data needed for 4826 elements
14:08:39 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:39 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 13:00:00 (before)
2023-09-02 14:00:00 (after)
14:08:40 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:40 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:40 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:40 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:40 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:40 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:40 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x23x5) for time after (2023-09-02 14:00:00)
14:08:40 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 13:00:00) in space (linearNDFast)
14:08:40 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:40 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 14:00:00) in space (linearNDFast)
14:08:40 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3148 elements, expanding data 1
14:08:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
14:08:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3148 elements, expanding data 1
14:08:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
14:08:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3219 elements, expanding data 1
14:08:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 236 elements, expanding data 2
14:08:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 32 elements, expanding data 3
14:08:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3219 elements, expanding data 1
14:08:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 236 elements, expanding data 2
14:08:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 32 elements, expanding data 3
14:08:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3219 elements, expanding data 1
14:08:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 236 elements, expanding data 2
14:08:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 32 elements, expanding data 3
14:08:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3219 elements, expanding data 1
14:08:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 236 elements, expanding data 2
14:08:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 32 elements, expanding data 3
14:08:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3219 elements, expanding data 1
14:08:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 236 elements, expanding data 2
14:08:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 32 elements, expanding data 3
14:08:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4093 elements, expanding data 1
14:08:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1893 elements, expanding data 2
14:08:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4093 elements, expanding data 1
14:08:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1893 elements, expanding data 2
14:08:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4093 elements, expanding data 1
14:08:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1893 elements, expanding data 2
14:08:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4093 elements, expanding data 1
14:08:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1893 elements, expanding data 2
14:08:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4093 elements, expanding data 1
14:08:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1893 elements, expanding data 2
14:08:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3148 elements, expanding data 1
14:08:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
14:08:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3148 elements, expanding data 1
14:08:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
14:08:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3148 elements, expanding data 1
14:08:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
14:08:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3148 elements, expanding data 1
14:08:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
14:08:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3148 elements, expanding data 1
14:08:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
14:08:40 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 13:00:00, weight 0.89) and
after (2023-09-02 14:00:00, weight 0.11) in time
14:08:40 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.09658834937624 and -58.9630237423984 degrees.
14:08:40 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.09658834937624 and -58.9630237423984 degrees.
14:08:40 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:40 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:40 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:40 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:40 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:40 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:40 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.801691 (min) 1.26423 (max)
14:08:40 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.01854 (min) 0.774074 (max)
14:08:40 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000108374 (min) 0.00064092 (max)
14:08:40 DEBUG opendrift.models.basemodel:1524: x_wind: -5.23383 (min) 10.0784 (max)
14:08:40 DEBUG opendrift.models.basemodel:1524: y_wind: -8.75995 (min) 5.41257 (max)
14:08:40 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:40 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:40 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:40 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:40 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:40 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:40 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:40 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3228 (max)
14:08:40 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:40 DEBUG opendrift.models.basemodel:1527: 4826 active elements
14:08:40 DEBUG opendrift.models.basemodel:1538: 59.103859078532835 <- latitude -> 59.18797078306291
14:08:40 DEBUG opendrift.models.basemodel:1543: 10.903422220557072 <- longitude -> 11.036986809485839
14:08:40 DEBUG opendrift.models.basemodel:1548: -14.538383712768555 <- z -> 0.0
14:08:40 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:40 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:40 DEBUG opendrift.models.physics_methods:1050: min: 0.087529, mean: 2.973690, max: 9.341637
14:08:40 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.087529, mean: 2.973690, max: 9.341637
14:08:40 DEBUG opendrift.models.basemodel:813: 815 elements hit coastline, moving back to water
14:08:40 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:08:40 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:40 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:40 DEBUG opendrift.models.physics_methods:828: Advecting 40 of 4826 elements above 0.100m with wind-sheared ocean current (0.004445 m/s - 0.153167 m/s)
14:08:40 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:40 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:40 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10798531881483077
14:08:40 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:40 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:40 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:40 DEBUG opendrift.models.oceandrift:582: 481 elements penetrated seafloor, lifting up
14:08:40 DEBUG opendrift.models.oceandrift:600: 70 elements reached seafloor, set to bottom
14:08:40 DEBUG opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
14:08:40 DEBUG opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
14:08:40 DEBUG opendrift.models.oceandrift:582: 386 elements penetrated seafloor, lifting up
14:08:40 DEBUG opendrift.models.oceandrift:600: 74 elements reached seafloor, set to bottom
14:08:40 DEBUG opendrift.models.basemodel:836: Lifting 74 elements to seafloor.
14:08:40 DEBUG opendrift.models.sedimentdrift:112: Settling 74 elements at seafloor
14:08:40 DEBUG opendrift.models.oceandrift:582: 377 elements penetrated seafloor, lifting up
14:08:40 DEBUG opendrift.models.oceandrift:600: 63 elements reached seafloor, set to bottom
14:08:40 DEBUG opendrift.models.basemodel:836: Lifting 63 elements to seafloor.
14:08:40 DEBUG opendrift.models.sedimentdrift:112: Settling 63 elements at seafloor
14:08:40 DEBUG opendrift.models.oceandrift:582: 380 elements penetrated seafloor, lifting up
14:08:40 DEBUG opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
14:08:40 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
14:08:40 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
14:08:40 DEBUG opendrift.models.oceandrift:582: 325 elements penetrated seafloor, lifting up
14:08:40 DEBUG opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
14:08:40 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
14:08:40 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
14:08:40 DEBUG opendrift.models.oceandrift:582: 350 elements penetrated seafloor, lifting up
14:08:40 DEBUG opendrift.models.oceandrift:600: 42 elements reached seafloor, set to bottom
14:08:40 DEBUG opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
14:08:40 DEBUG opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
14:08:40 DEBUG opendrift.models.oceandrift:582: 314 elements penetrated seafloor, lifting up
14:08:40 DEBUG opendrift.models.oceandrift:600: 44 elements reached seafloor, set to bottom
14:08:40 DEBUG opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
14:08:40 DEBUG opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
14:08:40 DEBUG opendrift.models.oceandrift:582: 336 elements penetrated seafloor, lifting up
14:08:40 DEBUG opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
14:08:40 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
14:08:40 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
14:08:40 DEBUG opendrift.models.oceandrift:582: 326 elements penetrated seafloor, lifting up
14:08:40 DEBUG opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
14:08:40 DEBUG opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
14:08:40 DEBUG opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
14:08:40 DEBUG opendrift.models.oceandrift:582: 298 elements penetrated seafloor, lifting up
14:08:40 DEBUG opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
14:08:40 DEBUG opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
14:08:40 DEBUG opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
14:08:40 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:40 DEBUG opendrift.models.basemodel:2945: 4826 active elements (0 deactivated)
14:08:40 DEBUG opendrift.models.basemodel:1658: to be seeded: 5174, already seeded 4826
14:08:40 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:08:40 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:40 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:40 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:40 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:40 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:40 DEBUG opendrift.models.basemodel:1253: Data needed for 4861 elements
14:08:40 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:40 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 13:00:00 (before)
2023-09-02 14:00:00 (after)
14:08:40 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 13:00:00) in space (linearNDFast)
14:08:40 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:40 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:40 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:40 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:40 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:40 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:40 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3219 (max)
14:08:40 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:40 DEBUG opendrift.models.basemodel:1527: 4861 active elements
14:08:40 DEBUG opendrift.models.basemodel:1538: 59.104167615587826 <- latitude -> 59.187989822413584
14:08:40 DEBUG opendrift.models.basemodel:1543: 10.903592285284537 <- longitude -> 11.03624843503598
14:08:40 DEBUG opendrift.models.basemodel:1548: -14.509328117370606 <- z -> 0.0
14:08:40 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:40 DEBUG opendrift.models.basemodel:836: Lifting 386 elements to seafloor.
14:08:40 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:40 INFO opendrift.models.basemodel:2882: 2023-09-02 13:16:21.121579 - step 140 of 216 - 4861 active elements (0 deactivated)
14:08:40 DEBUG opendrift.models.basemodel:2888: 5139 elements scheduled.
14:08:40 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:40 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:40 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:40 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:40 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:40 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:40 DEBUG opendrift.models.basemodel:1253: Data needed for 4861 elements
14:08:40 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:40 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:40 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:40 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:40 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:40 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:40 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:40 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:40 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:40 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:40 DEBUG opendrift.models.basemodel:1253: Data needed for 4861 elements
14:08:40 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:40 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 13:00:00 (before)
2023-09-02 14:00:00 (after)
14:08:41 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:41 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:41 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:41 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:41 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:41 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:41 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x23x5) for time after (2023-09-02 14:00:00)
14:08:41 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 13:00:00) in space (linearNDFast)
14:08:41 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:41 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 14:00:00) in space (linearNDFast)
14:08:41 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3182 elements, expanding data 1
14:08:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
14:08:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3182 elements, expanding data 1
14:08:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
14:08:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3252 elements, expanding data 1
14:08:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 243 elements, expanding data 2
14:08:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 32 elements, expanding data 3
14:08:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3252 elements, expanding data 1
14:08:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 243 elements, expanding data 2
14:08:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 32 elements, expanding data 3
14:08:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3252 elements, expanding data 1
14:08:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 243 elements, expanding data 2
14:08:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 32 elements, expanding data 3
14:08:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3252 elements, expanding data 1
14:08:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 243 elements, expanding data 2
14:08:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 32 elements, expanding data 3
14:08:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3252 elements, expanding data 1
14:08:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 243 elements, expanding data 2
14:08:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 32 elements, expanding data 3
14:08:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4094 elements, expanding data 1
14:08:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1934 elements, expanding data 2
14:08:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4094 elements, expanding data 1
14:08:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1934 elements, expanding data 2
14:08:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4094 elements, expanding data 1
14:08:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1934 elements, expanding data 2
14:08:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4094 elements, expanding data 1
14:08:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1934 elements, expanding data 2
14:08:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4094 elements, expanding data 1
14:08:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1934 elements, expanding data 2
14:08:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3182 elements, expanding data 1
14:08:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
14:08:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3182 elements, expanding data 1
14:08:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
14:08:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3182 elements, expanding data 1
14:08:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
14:08:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3182 elements, expanding data 1
14:08:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
14:08:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3182 elements, expanding data 1
14:08:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
14:08:41 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 13:00:00, weight 0.73) and
after (2023-09-02 14:00:00, weight 0.27) in time
14:08:41 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.09641828719978 and -58.963762125825326 degrees.
14:08:41 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.09641828719978 and -58.963762125825326 degrees.
14:08:41 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:41 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:41 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:41 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:41 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:41 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:41 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.834198 (min) 1.2551 (max)
14:08:41 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.913985 (min) 0.838426 (max)
14:08:41 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000102703 (min) 0.000715142 (max)
14:08:41 DEBUG opendrift.models.basemodel:1524: x_wind: -5.41173 (min) 10.2013 (max)
14:08:41 DEBUG opendrift.models.basemodel:1524: y_wind: -8.82198 (min) 5.31832 (max)
14:08:41 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:41 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:41 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:41 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:41 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:41 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:41 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:41 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3219 (max)
14:08:41 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:41 DEBUG opendrift.models.basemodel:1527: 4861 active elements
14:08:41 DEBUG opendrift.models.basemodel:1538: 59.104167615587826 <- latitude -> 59.187989822413584
14:08:41 DEBUG opendrift.models.basemodel:1543: 10.903592285284537 <- longitude -> 11.03624843503598
14:08:41 DEBUG opendrift.models.basemodel:1548: -14.468135464505831 <- z -> 0.0
14:08:41 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:41 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:41 DEBUG opendrift.models.physics_methods:1050: min: 0.040895, mean: 2.960253, max: 8.776246
14:08:41 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.040895, mean: 2.960253, max: 8.776246
14:08:41 DEBUG opendrift.models.basemodel:813: 834 elements hit coastline, moving back to water
14:08:41 DEBUG opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
14:08:41 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:41 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:41 DEBUG opendrift.models.physics_methods:828: Advecting 41 of 4861 elements above 0.100m with wind-sheared ocean current (0.014075 m/s - 0.161488 m/s)
14:08:41 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:41 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:41 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09531002363307953
14:08:41 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:41 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:41 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:41 DEBUG opendrift.models.oceandrift:582: 583 elements penetrated seafloor, lifting up
14:08:41 DEBUG opendrift.models.oceandrift:600: 67 elements reached seafloor, set to bottom
14:08:41 DEBUG opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
14:08:41 DEBUG opendrift.models.sedimentdrift:112: Settling 67 elements at seafloor
14:08:41 DEBUG opendrift.models.oceandrift:582: 454 elements penetrated seafloor, lifting up
14:08:41 DEBUG opendrift.models.oceandrift:600: 69 elements reached seafloor, set to bottom
14:08:41 DEBUG opendrift.models.basemodel:836: Lifting 69 elements to seafloor.
14:08:41 DEBUG opendrift.models.sedimentdrift:112: Settling 69 elements at seafloor
14:08:41 DEBUG opendrift.models.oceandrift:582: 409 elements penetrated seafloor, lifting up
14:08:41 DEBUG opendrift.models.oceandrift:600: 54 elements reached seafloor, set to bottom
14:08:41 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
14:08:41 DEBUG opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
14:08:41 DEBUG opendrift.models.oceandrift:582: 386 elements penetrated seafloor, lifting up
14:08:41 DEBUG opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
14:08:41 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
14:08:41 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
14:08:41 DEBUG opendrift.models.oceandrift:582: 327 elements penetrated seafloor, lifting up
14:08:41 DEBUG opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
14:08:41 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
14:08:41 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
14:08:41 DEBUG opendrift.models.oceandrift:582: 348 elements penetrated seafloor, lifting up
14:08:41 DEBUG opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
14:08:41 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
14:08:41 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
14:08:41 DEBUG opendrift.models.oceandrift:582: 351 elements penetrated seafloor, lifting up
14:08:41 DEBUG opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
14:08:41 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
14:08:41 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
14:08:41 DEBUG opendrift.models.oceandrift:582: 331 elements penetrated seafloor, lifting up
14:08:41 DEBUG opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
14:08:41 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
14:08:41 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
14:08:41 DEBUG opendrift.models.oceandrift:582: 326 elements penetrated seafloor, lifting up
14:08:41 DEBUG opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
14:08:41 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
14:08:41 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
14:08:41 DEBUG opendrift.models.oceandrift:582: 287 elements penetrated seafloor, lifting up
14:08:41 DEBUG opendrift.models.oceandrift:600: 36 elements reached seafloor, set to bottom
14:08:41 DEBUG opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
14:08:41 DEBUG opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
14:08:41 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:41 DEBUG opendrift.models.basemodel:2945: 4861 active elements (0 deactivated)
14:08:41 DEBUG opendrift.models.basemodel:1658: to be seeded: 5139, already seeded 4861
14:08:41 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:08:41 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:41 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:41 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:41 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:41 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:41 DEBUG opendrift.models.basemodel:1253: Data needed for 4896 elements
14:08:41 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:41 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 13:00:00 (before)
2023-09-02 14:00:00 (after)
14:08:41 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 13:00:00) in space (linearNDFast)
14:08:41 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:41 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:41 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:41 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:41 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:41 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:41 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3538 (max)
14:08:41 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:41 DEBUG opendrift.models.basemodel:1527: 4896 active elements
14:08:41 DEBUG opendrift.models.basemodel:1538: 59.1031864489801 <- latitude -> 59.18995749645826
14:08:41 DEBUG opendrift.models.basemodel:1543: 10.903592285284534 <- longitude -> 11.037827514603046
14:08:41 DEBUG opendrift.models.basemodel:1548: -14.415125846862793 <- z -> 0.0
14:08:41 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:41 DEBUG opendrift.models.basemodel:836: Lifting 416 elements to seafloor.
14:08:41 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:41 INFO opendrift.models.basemodel:2882: 2023-09-02 13:26:21.121579 - step 141 of 216 - 4896 active elements (0 deactivated)
14:08:41 DEBUG opendrift.models.basemodel:2888: 5104 elements scheduled.
14:08:41 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:41 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:41 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:41 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:41 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:41 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:41 DEBUG opendrift.models.basemodel:1253: Data needed for 4896 elements
14:08:41 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:41 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:41 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:41 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:41 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:41 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:41 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:41 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:41 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:41 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:41 DEBUG opendrift.models.basemodel:1253: Data needed for 4896 elements
14:08:41 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:41 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 13:00:00 (before)
2023-09-02 14:00:00 (after)
14:08:42 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:42 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:42 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:42 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:42 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:42 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:42 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x23x5) for time after (2023-09-02 14:00:00)
14:08:42 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 13:00:00) in space (linearNDFast)
14:08:42 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:42 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 14:00:00) in space (linearNDFast)
14:08:42 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3198 elements, expanding data 1
14:08:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 2
14:08:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3198 elements, expanding data 1
14:08:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 2
14:08:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3262 elements, expanding data 1
14:08:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 248 elements, expanding data 2
14:08:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 3
14:08:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3262 elements, expanding data 1
14:08:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 248 elements, expanding data 2
14:08:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 3
14:08:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3262 elements, expanding data 1
14:08:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 248 elements, expanding data 2
14:08:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 3
14:08:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3262 elements, expanding data 1
14:08:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 248 elements, expanding data 2
14:08:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 3
14:08:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3262 elements, expanding data 1
14:08:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 248 elements, expanding data 2
14:08:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 3
14:08:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4120 elements, expanding data 1
14:08:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1935 elements, expanding data 2
14:08:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4120 elements, expanding data 1
14:08:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1935 elements, expanding data 2
14:08:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4120 elements, expanding data 1
14:08:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1935 elements, expanding data 2
14:08:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4120 elements, expanding data 1
14:08:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1935 elements, expanding data 2
14:08:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4120 elements, expanding data 1
14:08:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1935 elements, expanding data 2
14:08:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3198 elements, expanding data 1
14:08:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 2
14:08:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3198 elements, expanding data 1
14:08:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 2
14:08:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3198 elements, expanding data 1
14:08:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 2
14:08:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3198 elements, expanding data 1
14:08:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 2
14:08:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3198 elements, expanding data 1
14:08:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 2
14:08:42 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 13:00:00, weight 0.56) and
after (2023-09-02 14:00:00, weight 0.44) in time
14:08:42 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.09641828719978 and -58.9621830344527 degrees.
14:08:42 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.09641828719978 and -58.9621830344527 degrees.
14:08:42 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:42 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:42 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:42 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:42 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:42 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:42 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.790403 (min) 1.21817 (max)
14:08:42 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.05871 (min) 0.950314 (max)
14:08:42 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000114932 (min) 0.000681177 (max)
14:08:42 DEBUG opendrift.models.basemodel:1524: x_wind: -4.37809 (min) 9.72418 (max)
14:08:42 DEBUG opendrift.models.basemodel:1524: y_wind: -8.70238 (min) 5.35403 (max)
14:08:42 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:42 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:42 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:42 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:42 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:42 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:42 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:42 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3538 (max)
14:08:42 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:42 DEBUG opendrift.models.basemodel:1527: 4896 active elements
14:08:42 DEBUG opendrift.models.basemodel:1538: 59.1031864489801 <- latitude -> 59.18995749645826
14:08:42 DEBUG opendrift.models.basemodel:1543: 10.903592285284534 <- longitude -> 11.037827514603046
14:08:42 DEBUG opendrift.models.basemodel:1548: -14.400538444519043 <- z -> 0.0
14:08:42 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:42 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:42 DEBUG opendrift.models.physics_methods:1050: min: 0.021921, mean: 2.943620, max: 8.745975
14:08:42 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.021921, mean: 2.943620, max: 8.745975
14:08:42 DEBUG opendrift.models.basemodel:813: 858 elements hit coastline, moving back to water
14:08:42 DEBUG opendrift.models.basemodel:836: Lifting 166 elements to seafloor.
14:08:42 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:42 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:42 DEBUG opendrift.models.physics_methods:828: Advecting 41 of 4896 elements above 0.100m with wind-sheared ocean current (0.004704 m/s - 0.144662 m/s)
14:08:42 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:42 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:42 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09465368515594481
14:08:42 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:42 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:42 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:42 DEBUG opendrift.models.oceandrift:582: 492 elements penetrated seafloor, lifting up
14:08:42 DEBUG opendrift.models.oceandrift:600: 71 elements reached seafloor, set to bottom
14:08:42 DEBUG opendrift.models.basemodel:836: Lifting 71 elements to seafloor.
14:08:42 DEBUG opendrift.models.sedimentdrift:112: Settling 71 elements at seafloor
14:08:42 DEBUG opendrift.models.oceandrift:582: 432 elements penetrated seafloor, lifting up
14:08:42 DEBUG opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
14:08:42 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
14:08:42 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
14:08:42 DEBUG opendrift.models.oceandrift:582: 411 elements penetrated seafloor, lifting up
14:08:42 DEBUG opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
14:08:42 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
14:08:42 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
14:08:42 DEBUG opendrift.models.oceandrift:582: 390 elements penetrated seafloor, lifting up
14:08:42 DEBUG opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
14:08:42 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
14:08:42 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
14:08:42 DEBUG opendrift.models.oceandrift:582: 370 elements penetrated seafloor, lifting up
14:08:42 DEBUG opendrift.models.oceandrift:600: 56 elements reached seafloor, set to bottom
14:08:42 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
14:08:42 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
14:08:42 DEBUG opendrift.models.oceandrift:582: 340 elements penetrated seafloor, lifting up
14:08:42 DEBUG opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
14:08:42 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
14:08:42 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
14:08:42 DEBUG opendrift.models.oceandrift:582: 331 elements penetrated seafloor, lifting up
14:08:42 DEBUG opendrift.models.oceandrift:600: 63 elements reached seafloor, set to bottom
14:08:42 DEBUG opendrift.models.basemodel:836: Lifting 63 elements to seafloor.
14:08:42 DEBUG opendrift.models.sedimentdrift:112: Settling 63 elements at seafloor
14:08:42 DEBUG opendrift.models.oceandrift:582: 324 elements penetrated seafloor, lifting up
14:08:42 DEBUG opendrift.models.oceandrift:600: 40 elements reached seafloor, set to bottom
14:08:42 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
14:08:42 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
14:08:42 DEBUG opendrift.models.oceandrift:582: 285 elements penetrated seafloor, lifting up
14:08:42 DEBUG opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
14:08:42 DEBUG opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
14:08:42 DEBUG opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
14:08:42 DEBUG opendrift.models.oceandrift:582: 321 elements penetrated seafloor, lifting up
14:08:42 DEBUG opendrift.models.oceandrift:600: 54 elements reached seafloor, set to bottom
14:08:42 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
14:08:42 DEBUG opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
14:08:42 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:42 DEBUG opendrift.models.basemodel:2945: 4896 active elements (0 deactivated)
14:08:42 DEBUG opendrift.models.basemodel:1658: to be seeded: 5104, already seeded 4896
14:08:42 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:08:42 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:42 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:42 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:42 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:42 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:42 DEBUG opendrift.models.basemodel:1253: Data needed for 4931 elements
14:08:42 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:42 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 13:00:00 (before)
2023-09-02 14:00:00 (after)
14:08:42 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 13:00:00) in space (linearNDFast)
14:08:42 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:42 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:42 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:42 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:42 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:42 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:42 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4366 (max)
14:08:42 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:42 DEBUG opendrift.models.basemodel:1527: 4931 active elements
14:08:42 DEBUG opendrift.models.basemodel:1538: 59.10079399843431 <- latitude -> 59.187463402656725
14:08:42 DEBUG opendrift.models.basemodel:1543: 10.903747389750814 <- longitude -> 11.040693971199872
14:08:42 DEBUG opendrift.models.basemodel:1548: -14.400537490844727 <- z -> 0.0
14:08:42 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:42 DEBUG opendrift.models.basemodel:836: Lifting 416 elements to seafloor.
14:08:42 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:42 INFO opendrift.models.basemodel:2882: 2023-09-02 13:36:21.121579 - step 142 of 216 - 4931 active elements (0 deactivated)
14:08:42 DEBUG opendrift.models.basemodel:2888: 5069 elements scheduled.
14:08:42 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:42 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:42 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:42 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:42 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:42 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:42 DEBUG opendrift.models.basemodel:1253: Data needed for 4931 elements
14:08:42 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:42 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:42 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:42 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:42 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:42 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:42 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:42 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:42 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:42 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:42 DEBUG opendrift.models.basemodel:1253: Data needed for 4931 elements
14:08:42 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:42 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 13:00:00 (before)
2023-09-02 14:00:00 (after)
14:08:43 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:43 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:43 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:43 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:43 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:43 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:43 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x23x5) for time after (2023-09-02 14:00:00)
14:08:43 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 13:00:00) in space (linearNDFast)
14:08:43 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:43 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 14:00:00) in space (linearNDFast)
14:08:43 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3218 elements, expanding data 1
14:08:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 2
14:08:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3218 elements, expanding data 1
14:08:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 2
14:08:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3285 elements, expanding data 1
14:08:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 261 elements, expanding data 2
14:08:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 3
14:08:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3285 elements, expanding data 1
14:08:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 261 elements, expanding data 2
14:08:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 3
14:08:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3285 elements, expanding data 1
14:08:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 261 elements, expanding data 2
14:08:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 3
14:08:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3285 elements, expanding data 1
14:08:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 261 elements, expanding data 2
14:08:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 3
14:08:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3285 elements, expanding data 1
14:08:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 261 elements, expanding data 2
14:08:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 3
14:08:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4165 elements, expanding data 1
14:08:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1928 elements, expanding data 2
14:08:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4165 elements, expanding data 1
14:08:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1928 elements, expanding data 2
14:08:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4165 elements, expanding data 1
14:08:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1928 elements, expanding data 2
14:08:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4165 elements, expanding data 1
14:08:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1928 elements, expanding data 2
14:08:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4165 elements, expanding data 1
14:08:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1928 elements, expanding data 2
14:08:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3218 elements, expanding data 1
14:08:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 2
14:08:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3218 elements, expanding data 1
14:08:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 2
14:08:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3218 elements, expanding data 1
14:08:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 2
14:08:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3218 elements, expanding data 1
14:08:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 2
14:08:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3218 elements, expanding data 1
14:08:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 2
14:08:43 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 13:00:00, weight 0.39) and
after (2023-09-02 14:00:00, weight 0.61) in time
14:08:43 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.09626318808152 and -58.959316573175876 degrees.
14:08:43 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.09626318808152 and -58.959316573175876 degrees.
14:08:43 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:43 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:43 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:43 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:43 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:43 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:43 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.862412 (min) 1.33811 (max)
14:08:43 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.0074 (min) 0.857842 (max)
14:08:43 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000167485 (min) 0.000738696 (max)
14:08:43 DEBUG opendrift.models.basemodel:1524: x_wind: -5.0281 (min) 9.69742 (max)
14:08:43 DEBUG opendrift.models.basemodel:1524: y_wind: -9.37509 (min) 5.89088 (max)
14:08:43 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:43 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:43 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:43 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:43 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:43 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:43 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:43 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4366 (max)
14:08:43 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:43 DEBUG opendrift.models.basemodel:1527: 4931 active elements
14:08:43 DEBUG opendrift.models.basemodel:1538: 59.10079399843431 <- latitude -> 59.187463402656725
14:08:43 DEBUG opendrift.models.basemodel:1543: 10.903747389750814 <- longitude -> 11.040693971199872
14:08:43 DEBUG opendrift.models.basemodel:1548: -14.400537490844727 <- z -> 0.0
14:08:43 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:43 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:43 DEBUG opendrift.models.physics_methods:1050: min: 0.037434, mean: 2.966409, max: 8.507744
14:08:43 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.037434, mean: 2.966409, max: 8.507744
14:08:43 DEBUG opendrift.models.basemodel:813: 821 elements hit coastline, moving back to water
14:08:43 DEBUG opendrift.models.basemodel:836: Lifting 139 elements to seafloor.
14:08:43 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:43 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:43 DEBUG opendrift.models.physics_methods:828: Advecting 39 of 4931 elements above 0.100m with wind-sheared ocean current (0.003152 m/s - 0.102258 m/s)
14:08:43 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:43 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:43 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08956760486085891
14:08:43 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:43 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:43 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:43 DEBUG opendrift.models.oceandrift:582: 514 elements penetrated seafloor, lifting up
14:08:43 DEBUG opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
14:08:43 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
14:08:43 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
14:08:43 DEBUG opendrift.models.oceandrift:582: 431 elements penetrated seafloor, lifting up
14:08:43 DEBUG opendrift.models.oceandrift:600: 71 elements reached seafloor, set to bottom
14:08:43 DEBUG opendrift.models.basemodel:836: Lifting 71 elements to seafloor.
14:08:43 DEBUG opendrift.models.sedimentdrift:112: Settling 71 elements at seafloor
14:08:43 DEBUG opendrift.models.oceandrift:582: 401 elements penetrated seafloor, lifting up
14:08:43 DEBUG opendrift.models.oceandrift:600: 52 elements reached seafloor, set to bottom
14:08:43 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
14:08:43 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
14:08:43 DEBUG opendrift.models.oceandrift:582: 398 elements penetrated seafloor, lifting up
14:08:43 DEBUG opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
14:08:43 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
14:08:43 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
14:08:43 DEBUG opendrift.models.oceandrift:582: 383 elements penetrated seafloor, lifting up
14:08:43 DEBUG opendrift.models.oceandrift:600: 42 elements reached seafloor, set to bottom
14:08:43 DEBUG opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
14:08:43 DEBUG opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
14:08:43 DEBUG opendrift.models.oceandrift:582: 349 elements penetrated seafloor, lifting up
14:08:43 DEBUG opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
14:08:43 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
14:08:43 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
14:08:43 DEBUG opendrift.models.oceandrift:582: 346 elements penetrated seafloor, lifting up
14:08:43 DEBUG opendrift.models.oceandrift:600: 54 elements reached seafloor, set to bottom
14:08:43 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
14:08:43 DEBUG opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
14:08:43 DEBUG opendrift.models.oceandrift:582: 338 elements penetrated seafloor, lifting up
14:08:43 DEBUG opendrift.models.oceandrift:600: 58 elements reached seafloor, set to bottom
14:08:43 DEBUG opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
14:08:43 DEBUG opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
14:08:43 DEBUG opendrift.models.oceandrift:582: 330 elements penetrated seafloor, lifting up
14:08:43 DEBUG opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
14:08:43 DEBUG opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
14:08:43 DEBUG opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
14:08:43 DEBUG opendrift.models.oceandrift:582: 332 elements penetrated seafloor, lifting up
14:08:43 DEBUG opendrift.models.oceandrift:600: 56 elements reached seafloor, set to bottom
14:08:43 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
14:08:43 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
14:08:43 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:43 DEBUG opendrift.models.basemodel:2945: 4931 active elements (0 deactivated)
14:08:43 DEBUG opendrift.models.basemodel:1658: to be seeded: 5069, already seeded 4931
14:08:43 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:08:43 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:43 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:43 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:43 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:43 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:43 DEBUG opendrift.models.basemodel:1253: Data needed for 4965 elements
14:08:43 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:43 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 13:00:00 (before)
2023-09-02 14:00:00 (after)
14:08:43 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 13:00:00) in space (linearNDFast)
14:08:43 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:43 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:43 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:43 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:43 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:43 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:43 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5331 (max)
14:08:43 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:43 DEBUG opendrift.models.basemodel:1527: 4965 active elements
14:08:43 DEBUG opendrift.models.basemodel:1538: 59.09815974007449 <- latitude -> 59.188289304780724
14:08:43 DEBUG opendrift.models.basemodel:1543: 10.903747389750814 <- longitude -> 11.038044781504412
14:08:43 DEBUG opendrift.models.basemodel:1548: -14.664039827966052 <- z -> 0.0
14:08:43 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:43 DEBUG opendrift.models.basemodel:836: Lifting 395 elements to seafloor.
14:08:43 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:43 INFO opendrift.models.basemodel:2882: 2023-09-02 13:46:21.121579 - step 143 of 216 - 4965 active elements (0 deactivated)
14:08:43 DEBUG opendrift.models.basemodel:2888: 5035 elements scheduled.
14:08:43 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:43 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:43 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:43 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:43 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:43 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:43 DEBUG opendrift.models.basemodel:1253: Data needed for 4965 elements
14:08:43 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:43 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:43 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:43 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:43 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:43 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:43 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:43 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:43 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:43 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:43 DEBUG opendrift.models.basemodel:1253: Data needed for 4965 elements
14:08:43 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:43 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 13:00:00 (before)
2023-09-02 14:00:00 (after)
14:08:44 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:44 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:44 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:44 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:44 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:44 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:44 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x23x5) for time after (2023-09-02 14:00:00)
14:08:44 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 13:00:00) in space (linearNDFast)
14:08:44 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:44 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 14:00:00) in space (linearNDFast)
14:08:44 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3237 elements, expanding data 1
14:08:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 2
14:08:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3237 elements, expanding data 1
14:08:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 2
14:08:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3310 elements, expanding data 1
14:08:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 247 elements, expanding data 2
14:08:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 3
14:08:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3310 elements, expanding data 1
14:08:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 247 elements, expanding data 2
14:08:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 3
14:08:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3310 elements, expanding data 1
14:08:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 247 elements, expanding data 2
14:08:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 3
14:08:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3310 elements, expanding data 1
14:08:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 247 elements, expanding data 2
14:08:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 3
14:08:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3310 elements, expanding data 1
14:08:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 247 elements, expanding data 2
14:08:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 3
14:08:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4191 elements, expanding data 1
14:08:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1968 elements, expanding data 2
14:08:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4191 elements, expanding data 1
14:08:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1968 elements, expanding data 2
14:08:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4191 elements, expanding data 1
14:08:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1968 elements, expanding data 2
14:08:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4191 elements, expanding data 1
14:08:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1968 elements, expanding data 2
14:08:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4191 elements, expanding data 1
14:08:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1968 elements, expanding data 2
14:08:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3237 elements, expanding data 1
14:08:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 2
14:08:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3237 elements, expanding data 1
14:08:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 2
14:08:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3237 elements, expanding data 1
14:08:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 2
14:08:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3237 elements, expanding data 1
14:08:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 2
14:08:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3237 elements, expanding data 1
14:08:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 2
14:08:44 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 13:00:00, weight 0.23) and
after (2023-09-02 14:00:00, weight 0.77) in time
14:08:44 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.09626318808152 and -58.96196578178527 degrees.
14:08:44 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.09626318808152 and -58.96196578178527 degrees.
14:08:44 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:44 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:44 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:44 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:44 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:44 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:44 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.731443 (min) 1.10889 (max)
14:08:44 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.14077 (min) 0.773554 (max)
14:08:44 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -5.47535e-05 (min) 0.000713402 (max)
14:08:44 DEBUG opendrift.models.basemodel:1524: x_wind: -5.739 (min) 10.3302 (max)
14:08:44 DEBUG opendrift.models.basemodel:1524: y_wind: -8.60052 (min) 6.15574 (max)
14:08:44 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:44 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:44 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:44 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:44 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:44 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:44 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:44 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5331 (max)
14:08:44 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:44 DEBUG opendrift.models.basemodel:1527: 4965 active elements
14:08:44 DEBUG opendrift.models.basemodel:1538: 59.09815974007449 <- latitude -> 59.188289304780724
14:08:44 DEBUG opendrift.models.basemodel:1543: 10.903747389750814 <- longitude -> 11.038044781504412
14:08:44 DEBUG opendrift.models.basemodel:1548: -14.664039827966052 <- z -> 0.0
14:08:44 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:44 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:44 DEBUG opendrift.models.physics_methods:1050: min: 0.113396, mean: 2.954299, max: 8.835659
14:08:44 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.113396, mean: 2.954299, max: 8.835659
14:08:44 DEBUG opendrift.models.basemodel:813: 792 elements hit coastline, moving back to water
14:08:44 DEBUG opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
14:08:44 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:44 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:44 DEBUG opendrift.models.physics_methods:828: Advecting 40 of 4965 elements above 0.100m with wind-sheared ocean current (0.002759 m/s - 0.127104 m/s)
14:08:44 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:44 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:44 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09660475390108109
14:08:44 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:44 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:44 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:44 DEBUG opendrift.models.oceandrift:582: 510 elements penetrated seafloor, lifting up
14:08:44 DEBUG opendrift.models.oceandrift:600: 68 elements reached seafloor, set to bottom
14:08:44 DEBUG opendrift.models.basemodel:836: Lifting 68 elements to seafloor.
14:08:44 DEBUG opendrift.models.sedimentdrift:112: Settling 68 elements at seafloor
14:08:44 DEBUG opendrift.models.oceandrift:582: 418 elements penetrated seafloor, lifting up
14:08:44 DEBUG opendrift.models.oceandrift:600: 59 elements reached seafloor, set to bottom
14:08:44 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
14:08:44 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
14:08:44 DEBUG opendrift.models.oceandrift:582: 369 elements penetrated seafloor, lifting up
14:08:44 DEBUG opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
14:08:44 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
14:08:44 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
14:08:44 DEBUG opendrift.models.oceandrift:582: 398 elements penetrated seafloor, lifting up
14:08:44 DEBUG opendrift.models.oceandrift:600: 52 elements reached seafloor, set to bottom
14:08:44 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
14:08:44 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
14:08:44 DEBUG opendrift.models.oceandrift:582: 371 elements penetrated seafloor, lifting up
14:08:44 DEBUG opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
14:08:44 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
14:08:44 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
14:08:44 DEBUG opendrift.models.oceandrift:582: 340 elements penetrated seafloor, lifting up
14:08:44 DEBUG opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
14:08:44 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
14:08:44 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
14:08:44 DEBUG opendrift.models.oceandrift:582: 353 elements penetrated seafloor, lifting up
14:08:44 DEBUG opendrift.models.oceandrift:600: 56 elements reached seafloor, set to bottom
14:08:44 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
14:08:44 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
14:08:44 DEBUG opendrift.models.oceandrift:582: 315 elements penetrated seafloor, lifting up
14:08:44 DEBUG opendrift.models.oceandrift:600: 36 elements reached seafloor, set to bottom
14:08:44 DEBUG opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
14:08:44 DEBUG opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
14:08:44 DEBUG opendrift.models.oceandrift:582: 326 elements penetrated seafloor, lifting up
14:08:44 DEBUG opendrift.models.oceandrift:600: 62 elements reached seafloor, set to bottom
14:08:44 DEBUG opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
14:08:44 DEBUG opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
14:08:44 DEBUG opendrift.models.oceandrift:582: 313 elements penetrated seafloor, lifting up
14:08:44 DEBUG opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
14:08:44 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
14:08:44 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
14:08:44 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:44 DEBUG opendrift.models.basemodel:2945: 4965 active elements (0 deactivated)
14:08:44 DEBUG opendrift.models.basemodel:1658: to be seeded: 5035, already seeded 4965
14:08:44 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:08:44 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:44 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:44 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:44 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:44 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:44 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:08:44 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:44 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 13:00:00 (before)
2023-09-02 14:00:00 (after)
14:08:44 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 13:00:00) in space (linearNDFast)
14:08:44 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:44 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:44 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:44 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:44 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:44 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:44 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5624 (max)
14:08:44 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:44 DEBUG opendrift.models.basemodel:1527: 5000 active elements
14:08:44 DEBUG opendrift.models.basemodel:1538: 59.09719390182636 <- latitude -> 59.18781984332173
14:08:44 DEBUG opendrift.models.basemodel:1543: 10.903747389750814 <- longitude -> 11.040957302163829
14:08:44 DEBUG opendrift.models.basemodel:1548: -14.694294929504395 <- z -> 0.0
14:08:44 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:44 DEBUG opendrift.models.basemodel:836: Lifting 379 elements to seafloor.
14:08:44 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:44 INFO opendrift.models.basemodel:2882: 2023-09-02 13:56:21.121579 - step 144 of 216 - 5000 active elements (0 deactivated)
14:08:44 DEBUG opendrift.models.basemodel:2888: 5000 elements scheduled.
14:08:44 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:44 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:44 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:44 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:44 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:44 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:44 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:08:44 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:44 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:44 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:44 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:44 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:44 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:44 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:44 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:44 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:44 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:44 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
14:08:44 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:44 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 13:00:00 (before)
2023-09-02 14:00:00 (after)
14:08:45 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:45 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:45 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:45 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:45 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:45 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:45 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x23x5) for time after (2023-09-02 14:00:00)
14:08:45 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 13:00:00) in space (linearNDFast)
14:08:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:45 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 14:00:00) in space (linearNDFast)
14:08:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3279 elements, expanding data 1
14:08:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 2
14:08:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3279 elements, expanding data 1
14:08:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 2
14:08:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3350 elements, expanding data 1
14:08:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 2
14:08:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 3
14:08:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3350 elements, expanding data 1
14:08:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 2
14:08:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 3
14:08:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3350 elements, expanding data 1
14:08:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 2
14:08:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 3
14:08:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3350 elements, expanding data 1
14:08:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 2
14:08:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 3
14:08:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3350 elements, expanding data 1
14:08:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 2
14:08:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 3
14:08:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4226 elements, expanding data 1
14:08:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2012 elements, expanding data 2
14:08:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4226 elements, expanding data 1
14:08:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2012 elements, expanding data 2
14:08:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4226 elements, expanding data 1
14:08:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2012 elements, expanding data 2
14:08:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4226 elements, expanding data 1
14:08:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2012 elements, expanding data 2
14:08:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4226 elements, expanding data 1
14:08:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2012 elements, expanding data 2
14:08:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3279 elements, expanding data 1
14:08:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 2
14:08:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3279 elements, expanding data 1
14:08:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 2
14:08:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3279 elements, expanding data 1
14:08:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 2
14:08:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3279 elements, expanding data 1
14:08:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 2
14:08:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3279 elements, expanding data 1
14:08:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 2
14:08:45 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 13:00:00, weight 0.06) and
after (2023-09-02 14:00:00, weight 0.94) in time
14:08:45 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.09626318808152 and -58.95905325636687 degrees.
14:08:45 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.09626318808152 and -58.95905325636687 degrees.
14:08:45 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:45 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:45 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:45 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:45 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:45 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:45 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.756361 (min) 1.16283 (max)
14:08:45 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.16867 (min) 0.807976 (max)
14:08:45 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -3.71905e-05 (min) 0.000695961 (max)
14:08:45 DEBUG opendrift.models.basemodel:1524: x_wind: -4.98086 (min) 9.36663 (max)
14:08:45 DEBUG opendrift.models.basemodel:1524: y_wind: -8.21363 (min) 7.19712 (max)
14:08:45 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:45 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:45 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:45 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:45 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:45 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:45 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:45 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5624 (max)
14:08:45 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:45 DEBUG opendrift.models.basemodel:1527: 5000 active elements
14:08:45 DEBUG opendrift.models.basemodel:1538: 59.09719390182636 <- latitude -> 59.18781984332173
14:08:45 DEBUG opendrift.models.basemodel:1543: 10.903747389750814 <- longitude -> 11.040957302163829
14:08:45 DEBUG opendrift.models.basemodel:1548: -14.694294929504395 <- z -> 0.0
14:08:45 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:45 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:45 DEBUG opendrift.models.physics_methods:1050: min: 0.058544, mean: 2.962776, max: 8.106901
14:08:45 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.058544, mean: 2.962776, max: 8.106901
14:08:45 DEBUG opendrift.models.basemodel:813: 816 elements hit coastline, moving back to water
14:08:45 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:08:45 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:45 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:45 DEBUG opendrift.models.physics_methods:828: Advecting 44 of 5000 elements above 0.100m with wind-sheared ocean current (0.000076 m/s - 0.117038 m/s)
14:08:45 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:45 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:45 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08132683610303879
14:08:45 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:45 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:45 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:45 DEBUG opendrift.models.oceandrift:582: 495 elements penetrated seafloor, lifting up
14:08:45 DEBUG opendrift.models.oceandrift:600: 75 elements reached seafloor, set to bottom
14:08:45 DEBUG opendrift.models.basemodel:836: Lifting 75 elements to seafloor.
14:08:45 DEBUG opendrift.models.sedimentdrift:112: Settling 75 elements at seafloor
14:08:45 DEBUG opendrift.models.oceandrift:582: 424 elements penetrated seafloor, lifting up
14:08:45 DEBUG opendrift.models.oceandrift:600: 69 elements reached seafloor, set to bottom
14:08:45 DEBUG opendrift.models.basemodel:836: Lifting 69 elements to seafloor.
14:08:45 DEBUG opendrift.models.sedimentdrift:112: Settling 69 elements at seafloor
14:08:45 DEBUG opendrift.models.oceandrift:582: 421 elements penetrated seafloor, lifting up
14:08:45 DEBUG opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
14:08:45 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
14:08:45 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
14:08:45 DEBUG opendrift.models.oceandrift:582: 363 elements penetrated seafloor, lifting up
14:08:45 DEBUG opendrift.models.oceandrift:600: 60 elements reached seafloor, set to bottom
14:08:45 DEBUG opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
14:08:45 DEBUG opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
14:08:45 DEBUG opendrift.models.oceandrift:582: 354 elements penetrated seafloor, lifting up
14:08:45 DEBUG opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
14:08:45 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
14:08:45 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
14:08:45 DEBUG opendrift.models.oceandrift:582: 345 elements penetrated seafloor, lifting up
14:08:45 DEBUG opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
14:08:45 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
14:08:45 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
14:08:45 DEBUG opendrift.models.oceandrift:582: 317 elements penetrated seafloor, lifting up
14:08:45 DEBUG opendrift.models.oceandrift:600: 44 elements reached seafloor, set to bottom
14:08:45 DEBUG opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
14:08:45 DEBUG opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
14:08:45 DEBUG opendrift.models.oceandrift:582: 305 elements penetrated seafloor, lifting up
14:08:45 DEBUG opendrift.models.oceandrift:600: 54 elements reached seafloor, set to bottom
14:08:45 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
14:08:45 DEBUG opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
14:08:45 DEBUG opendrift.models.oceandrift:582: 328 elements penetrated seafloor, lifting up
14:08:45 DEBUG opendrift.models.oceandrift:600: 56 elements reached seafloor, set to bottom
14:08:45 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
14:08:45 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
14:08:45 DEBUG opendrift.models.oceandrift:582: 278 elements penetrated seafloor, lifting up
14:08:45 DEBUG opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
14:08:45 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
14:08:45 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
14:08:45 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:45 DEBUG opendrift.models.basemodel:2945: 5000 active elements (0 deactivated)
14:08:45 DEBUG opendrift.models.basemodel:1658: to be seeded: 5000, already seeded 5000
14:08:45 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:08:45 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:45 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:45 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:45 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:45 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:45 DEBUG opendrift.models.basemodel:1253: Data needed for 5035 elements
14:08:45 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:45 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 14:00:00 (before)
2023-09-02 15:00:00 (after)
14:08:45 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 14:00:00) in space (linearNDFast)
14:08:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:45 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:45 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:45 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:45 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:45 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:45 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.6336 (max)
14:08:45 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:45 DEBUG opendrift.models.basemodel:1527: 5035 active elements
14:08:45 DEBUG opendrift.models.basemodel:1538: 59.0954434105896 <- latitude -> 59.18806533074103
14:08:45 DEBUG opendrift.models.basemodel:1543: 10.903747389750814 <- longitude -> 11.042430313395712
14:08:45 DEBUG opendrift.models.basemodel:1548: -14.684294929504395 <- z -> 0.0
14:08:45 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:45 DEBUG opendrift.models.basemodel:836: Lifting 409 elements to seafloor.
14:08:45 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:45 INFO opendrift.models.basemodel:2882: 2023-09-02 14:06:21.121579 - step 145 of 216 - 5035 active elements (0 deactivated)
14:08:45 DEBUG opendrift.models.basemodel:2888: 4965 elements scheduled.
14:08:45 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:45 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:45 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:45 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:45 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:45 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:45 DEBUG opendrift.models.basemodel:1253: Data needed for 5035 elements
14:08:45 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:45 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:45 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:45 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:45 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:45 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:45 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:45 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:45 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:45 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:45 DEBUG opendrift.models.basemodel:1253: Data needed for 5035 elements
14:08:45 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:45 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 14:00:00 (before)
2023-09-02 15:00:00 (after)
14:08:46 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:46 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:46 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:46 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:46 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:46 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:46 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x23x5) for time after (2023-09-02 15:00:00)
14:08:46 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 14:00:00) in space (linearNDFast)
14:08:46 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:46 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 15:00:00) in space (linearNDFast)
14:08:46 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3300 elements, expanding data 1
14:08:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 2
14:08:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3300 elements, expanding data 1
14:08:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 2
14:08:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3369 elements, expanding data 1
14:08:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 263 elements, expanding data 2
14:08:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 3
14:08:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3369 elements, expanding data 1
14:08:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 263 elements, expanding data 2
14:08:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 3
14:08:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3369 elements, expanding data 1
14:08:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 263 elements, expanding data 2
14:08:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 3
14:08:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3369 elements, expanding data 1
14:08:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 263 elements, expanding data 2
14:08:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 3
14:08:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3369 elements, expanding data 1
14:08:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 263 elements, expanding data 2
14:08:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 3
14:08:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4262 elements, expanding data 1
14:08:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2045 elements, expanding data 2
14:08:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4262 elements, expanding data 1
14:08:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2045 elements, expanding data 2
14:08:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4262 elements, expanding data 1
14:08:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2045 elements, expanding data 2
14:08:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4262 elements, expanding data 1
14:08:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2045 elements, expanding data 2
14:08:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4262 elements, expanding data 1
14:08:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2045 elements, expanding data 2
14:08:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3300 elements, expanding data 1
14:08:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 2
14:08:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3300 elements, expanding data 1
14:08:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 2
14:08:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3300 elements, expanding data 1
14:08:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 2
14:08:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3300 elements, expanding data 1
14:08:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 2
14:08:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3300 elements, expanding data 1
14:08:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 2
14:08:46 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 14:00:00, weight 0.89) and
after (2023-09-02 15:00:00, weight 0.11) in time
14:08:46 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.09626318808152 and -58.95758024079353 degrees.
14:08:46 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.09626318808152 and -58.95758024079353 degrees.
14:08:46 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:46 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:46 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:46 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:46 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:46 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:46 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.856806 (min) 1.28349 (max)
14:08:46 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.987141 (min) 0.818348 (max)
14:08:46 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -3.09101e-05 (min) 0.000702614 (max)
14:08:46 DEBUG opendrift.models.basemodel:1524: x_wind: -5.16256 (min) 9.85819 (max)
14:08:46 DEBUG opendrift.models.basemodel:1524: y_wind: -8.71429 (min) 5.80132 (max)
14:08:46 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:46 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:46 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:46 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:46 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:46 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:46 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:46 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.6336 (max)
14:08:46 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:46 DEBUG opendrift.models.basemodel:1527: 5035 active elements
14:08:46 DEBUG opendrift.models.basemodel:1538: 59.0954434105896 <- latitude -> 59.18806533074103
14:08:46 DEBUG opendrift.models.basemodel:1543: 10.903747389750814 <- longitude -> 11.042430313395712
14:08:46 DEBUG opendrift.models.basemodel:1548: -14.684294929504395 <- z -> 0.0
14:08:46 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:46 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:46 DEBUG opendrift.models.physics_methods:1050: min: 0.025524, mean: 3.011914, max: 8.580590
14:08:46 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.025524, mean: 3.011914, max: 8.580590
14:08:46 DEBUG opendrift.models.basemodel:813: 887 elements hit coastline, moving back to water
14:08:46 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:08:46 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:46 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:46 DEBUG opendrift.models.physics_methods:828: Advecting 40 of 5035 elements above 0.100m with wind-sheared ocean current (0.016778 m/s - 0.146213 m/s)
14:08:46 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:46 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:46 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09110791253431319
14:08:46 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:46 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:46 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:46 DEBUG opendrift.models.oceandrift:582: 558 elements penetrated seafloor, lifting up
14:08:46 DEBUG opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
14:08:46 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
14:08:46 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
14:08:46 DEBUG opendrift.models.oceandrift:582: 452 elements penetrated seafloor, lifting up
14:08:46 DEBUG opendrift.models.oceandrift:600: 67 elements reached seafloor, set to bottom
14:08:46 DEBUG opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
14:08:46 DEBUG opendrift.models.sedimentdrift:112: Settling 67 elements at seafloor
14:08:46 DEBUG opendrift.models.oceandrift:582: 410 elements penetrated seafloor, lifting up
14:08:46 DEBUG opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
14:08:46 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
14:08:46 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
14:08:46 DEBUG opendrift.models.oceandrift:582: 374 elements penetrated seafloor, lifting up
14:08:46 DEBUG opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
14:08:46 DEBUG opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
14:08:46 DEBUG opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
14:08:46 DEBUG opendrift.models.oceandrift:582: 364 elements penetrated seafloor, lifting up
14:08:46 DEBUG opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
14:08:46 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
14:08:46 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
14:08:46 DEBUG opendrift.models.oceandrift:582: 357 elements penetrated seafloor, lifting up
14:08:46 DEBUG opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
14:08:46 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
14:08:46 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
14:08:46 DEBUG opendrift.models.oceandrift:582: 323 elements penetrated seafloor, lifting up
14:08:46 DEBUG opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
14:08:46 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
14:08:46 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
14:08:46 DEBUG opendrift.models.oceandrift:582: 361 elements penetrated seafloor, lifting up
14:08:46 DEBUG opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
14:08:46 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
14:08:46 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
14:08:46 DEBUG opendrift.models.oceandrift:582: 327 elements penetrated seafloor, lifting up
14:08:46 DEBUG opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
14:08:46 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
14:08:46 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
14:08:46 DEBUG opendrift.models.oceandrift:582: 329 elements penetrated seafloor, lifting up
14:08:46 DEBUG opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
14:08:46 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
14:08:46 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
14:08:46 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:46 DEBUG opendrift.models.basemodel:2945: 5035 active elements (0 deactivated)
14:08:46 DEBUG opendrift.models.basemodel:1658: to be seeded: 4965, already seeded 5035
14:08:46 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:08:46 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:46 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:46 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:46 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:46 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:46 DEBUG opendrift.models.basemodel:1253: Data needed for 5069 elements
14:08:46 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:46 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 14:00:00 (before)
2023-09-02 15:00:00 (after)
14:08:46 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 14:00:00) in space (linearNDFast)
14:08:46 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:46 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:46 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:46 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:46 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:46 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:46 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.7097 (max)
14:08:46 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:46 DEBUG opendrift.models.basemodel:1527: 5069 active elements
14:08:46 DEBUG opendrift.models.basemodel:1538: 59.094332425350636 <- latitude -> 59.187447805541126
14:08:46 DEBUG opendrift.models.basemodel:1543: 10.902233110731485 <- longitude -> 11.040855697476347
14:08:46 DEBUG opendrift.models.basemodel:1548: -14.52593994140625 <- z -> 0.0
14:08:46 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:46 DEBUG opendrift.models.basemodel:836: Lifting 408 elements to seafloor.
14:08:46 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:46 INFO opendrift.models.basemodel:2882: 2023-09-02 14:16:21.121579 - step 146 of 216 - 5069 active elements (0 deactivated)
14:08:46 DEBUG opendrift.models.basemodel:2888: 4931 elements scheduled.
14:08:46 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:46 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:46 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:46 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:46 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:46 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:46 DEBUG opendrift.models.basemodel:1253: Data needed for 5069 elements
14:08:46 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:46 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:46 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:46 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:46 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:46 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:46 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:46 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:46 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:46 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:46 DEBUG opendrift.models.basemodel:1253: Data needed for 5069 elements
14:08:46 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:46 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 14:00:00 (before)
2023-09-02 15:00:00 (after)
14:08:47 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:47 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:47 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:47 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:47 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:47 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:47 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x23x5) for time after (2023-09-02 15:00:00)
14:08:47 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 14:00:00) in space (linearNDFast)
14:08:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:47 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 15:00:00) in space (linearNDFast)
14:08:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3327 elements, expanding data 1
14:08:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
14:08:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3327 elements, expanding data 1
14:08:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
14:08:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3407 elements, expanding data 1
14:08:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 261 elements, expanding data 2
14:08:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 3
14:08:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3407 elements, expanding data 1
14:08:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 261 elements, expanding data 2
14:08:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 3
14:08:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3407 elements, expanding data 1
14:08:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 261 elements, expanding data 2
14:08:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 3
14:08:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3407 elements, expanding data 1
14:08:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 261 elements, expanding data 2
14:08:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 3
14:08:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3407 elements, expanding data 1
14:08:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 261 elements, expanding data 2
14:08:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 3
14:08:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4289 elements, expanding data 1
14:08:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2036 elements, expanding data 2
14:08:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4289 elements, expanding data 1
14:08:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2036 elements, expanding data 2
14:08:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4289 elements, expanding data 1
14:08:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2036 elements, expanding data 2
14:08:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4289 elements, expanding data 1
14:08:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2036 elements, expanding data 2
14:08:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4289 elements, expanding data 1
14:08:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2036 elements, expanding data 2
14:08:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3327 elements, expanding data 1
14:08:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
14:08:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3327 elements, expanding data 1
14:08:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
14:08:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3327 elements, expanding data 1
14:08:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
14:08:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3327 elements, expanding data 1
14:08:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
14:08:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3327 elements, expanding data 1
14:08:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
14:08:47 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 14:00:00, weight 0.73) and
after (2023-09-02 15:00:00, weight 0.27) in time
14:08:47 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.09777745755098 and -58.95915486307252 degrees.
14:08:47 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.09777745755098 and -58.95915486307252 degrees.
14:08:47 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:47 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:47 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:47 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:47 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:47 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:47 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.764881 (min) 1.13218 (max)
14:08:47 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.927701 (min) 0.746499 (max)
14:08:47 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -5.77197e-05 (min) 0.000645292 (max)
14:08:47 DEBUG opendrift.models.basemodel:1524: x_wind: -4.53708 (min) 9.69731 (max)
14:08:47 DEBUG opendrift.models.basemodel:1524: y_wind: -7.44309 (min) 7.21142 (max)
14:08:47 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:47 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:47 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:47 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:47 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:47 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:47 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:47 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.7097 (max)
14:08:47 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:47 DEBUG opendrift.models.basemodel:1527: 5069 active elements
14:08:47 DEBUG opendrift.models.basemodel:1538: 59.094332425350636 <- latitude -> 59.187447805541126
14:08:47 DEBUG opendrift.models.basemodel:1543: 10.902233110731485 <- longitude -> 11.040855697476347
14:08:47 DEBUG opendrift.models.basemodel:1548: -14.4777250289917 <- z -> 0.0
14:08:47 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:47 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:47 DEBUG opendrift.models.physics_methods:1050: min: 0.020988, mean: 2.981566, max: 9.366139
14:08:47 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.020988, mean: 2.981566, max: 9.366139
14:08:47 DEBUG opendrift.models.basemodel:813: 865 elements hit coastline, moving back to water
14:08:47 DEBUG opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
14:08:47 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:47 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:47 DEBUG opendrift.models.physics_methods:828: Advecting 42 of 5069 elements above 0.100m with wind-sheared ocean current (0.004323 m/s - 0.140813 m/s)
14:08:47 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:47 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:47 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10855252414329528
14:08:47 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:47 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:47 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:47 DEBUG opendrift.models.oceandrift:582: 529 elements penetrated seafloor, lifting up
14:08:47 DEBUG opendrift.models.oceandrift:600: 73 elements reached seafloor, set to bottom
14:08:47 DEBUG opendrift.models.basemodel:836: Lifting 73 elements to seafloor.
14:08:47 DEBUG opendrift.models.sedimentdrift:112: Settling 73 elements at seafloor
14:08:47 DEBUG opendrift.models.oceandrift:582: 438 elements penetrated seafloor, lifting up
14:08:47 DEBUG opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
14:08:47 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
14:08:47 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
14:08:47 DEBUG opendrift.models.oceandrift:582: 397 elements penetrated seafloor, lifting up
14:08:47 DEBUG opendrift.models.oceandrift:600: 52 elements reached seafloor, set to bottom
14:08:47 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
14:08:47 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
14:08:47 DEBUG opendrift.models.oceandrift:582: 409 elements penetrated seafloor, lifting up
14:08:47 DEBUG opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
14:08:47 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
14:08:47 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
14:08:47 DEBUG opendrift.models.oceandrift:582: 377 elements penetrated seafloor, lifting up
14:08:47 DEBUG opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
14:08:47 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
14:08:47 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
14:08:47 DEBUG opendrift.models.oceandrift:582: 368 elements penetrated seafloor, lifting up
14:08:47 DEBUG opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
14:08:47 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
14:08:47 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
14:08:47 DEBUG opendrift.models.oceandrift:582: 367 elements penetrated seafloor, lifting up
14:08:47 DEBUG opendrift.models.oceandrift:600: 59 elements reached seafloor, set to bottom
14:08:47 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
14:08:47 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
14:08:47 DEBUG opendrift.models.oceandrift:582: 334 elements penetrated seafloor, lifting up
14:08:47 DEBUG opendrift.models.oceandrift:600: 56 elements reached seafloor, set to bottom
14:08:47 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
14:08:47 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
14:08:47 DEBUG opendrift.models.oceandrift:582: 324 elements penetrated seafloor, lifting up
14:08:47 DEBUG opendrift.models.oceandrift:600: 40 elements reached seafloor, set to bottom
14:08:47 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
14:08:47 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
14:08:47 DEBUG opendrift.models.oceandrift:582: 304 elements penetrated seafloor, lifting up
14:08:47 DEBUG opendrift.models.oceandrift:600: 56 elements reached seafloor, set to bottom
14:08:47 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
14:08:47 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
14:08:47 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:47 DEBUG opendrift.models.basemodel:2945: 5069 active elements (0 deactivated)
14:08:47 DEBUG opendrift.models.basemodel:1658: to be seeded: 4931, already seeded 5069
14:08:47 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:08:47 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:47 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:47 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:47 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:47 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:47 DEBUG opendrift.models.basemodel:1253: Data needed for 5104 elements
14:08:47 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:47 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 14:00:00 (before)
2023-09-02 15:00:00 (after)
14:08:47 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 14:00:00) in space (linearNDFast)
14:08:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:47 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:47 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:47 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:47 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:47 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:47 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.6811 (max)
14:08:47 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:47 DEBUG opendrift.models.basemodel:1527: 5104 active elements
14:08:47 DEBUG opendrift.models.basemodel:1538: 59.094823287103054 <- latitude -> 59.187847263245175
14:08:47 DEBUG opendrift.models.basemodel:1543: 10.902402754759994 <- longitude -> 11.041052240483946
14:08:47 DEBUG opendrift.models.basemodel:1548: -15.10410140991211 <- z -> 0.0
14:08:47 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:47 DEBUG opendrift.models.basemodel:836: Lifting 424 elements to seafloor.
14:08:47 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:47 INFO opendrift.models.basemodel:2882: 2023-09-02 14:26:21.121579 - step 147 of 216 - 5104 active elements (0 deactivated)
14:08:47 DEBUG opendrift.models.basemodel:2888: 4896 elements scheduled.
14:08:47 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:47 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:47 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:47 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:47 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:47 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:47 DEBUG opendrift.models.basemodel:1253: Data needed for 5104 elements
14:08:47 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:47 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:47 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:47 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:47 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:47 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:47 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:47 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:47 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:47 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:47 DEBUG opendrift.models.basemodel:1253: Data needed for 5104 elements
14:08:47 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:47 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 14:00:00 (before)
2023-09-02 15:00:00 (after)
14:08:47 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:47 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:47 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:47 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:47 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:47 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:47 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x23x6) for time after (2023-09-02 15:00:00)
14:08:47 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 14:00:00) in space (linearNDFast)
14:08:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:48 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 15:00:00) in space (linearNDFast)
14:08:48 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3319 elements, expanding data 1
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 2
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3319 elements, expanding data 1
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 2
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3402 elements, expanding data 1
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 244 elements, expanding data 2
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 3
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3402 elements, expanding data 1
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 244 elements, expanding data 2
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 3
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3402 elements, expanding data 1
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 244 elements, expanding data 2
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 3
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3402 elements, expanding data 1
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 244 elements, expanding data 2
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 3
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3402 elements, expanding data 1
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 244 elements, expanding data 2
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 3
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3402 elements, expanding data 1
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 244 elements, expanding data 2
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 3
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4314 elements, expanding data 1
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2048 elements, expanding data 2
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4314 elements, expanding data 1
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2048 elements, expanding data 2
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4314 elements, expanding data 1
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2048 elements, expanding data 2
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4314 elements, expanding data 1
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2048 elements, expanding data 2
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4314 elements, expanding data 1
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2048 elements, expanding data 2
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4314 elements, expanding data 1
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2048 elements, expanding data 2
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3319 elements, expanding data 1
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 2
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3319 elements, expanding data 1
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 2
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3319 elements, expanding data 1
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 2
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3319 elements, expanding data 1
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 2
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3319 elements, expanding data 1
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 2
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3319 elements, expanding data 1
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 2
14:08:48 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 14:00:00, weight 0.56) and
after (2023-09-02 15:00:00, weight 0.44) in time
14:08:48 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.09760781353331 and -58.95895830958911 degrees.
14:08:48 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.09760781353331 and -58.95895830958911 degrees.
14:08:48 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:48 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:48 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:48 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:48 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:48 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:48 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.737603 (min) 1.24502 (max)
14:08:48 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.952773 (min) 0.778642 (max)
14:08:48 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -5.32709e-05 (min) 0.000706926 (max)
14:08:48 DEBUG opendrift.models.basemodel:1524: x_wind: -4.6744 (min) 9.04478 (max)
14:08:48 DEBUG opendrift.models.basemodel:1524: y_wind: -7.27549 (min) 6.26638 (max)
14:08:48 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:48 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:48 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:48 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:48 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:48 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:48 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:48 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.6811 (max)
14:08:48 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:48 DEBUG opendrift.models.basemodel:1527: 5104 active elements
14:08:48 DEBUG opendrift.models.basemodel:1538: 59.094823287103054 <- latitude -> 59.187847263245175
14:08:48 DEBUG opendrift.models.basemodel:1543: 10.902402754759994 <- longitude -> 11.041052240483946
14:08:48 DEBUG opendrift.models.basemodel:1548: -15.10410140991211 <- z -> 0.0
14:08:48 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:48 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:48 DEBUG opendrift.models.physics_methods:1050: min: 0.022323, mean: 2.965196, max: 7.994625
14:08:48 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.022323, mean: 2.965196, max: 7.994625
14:08:48 DEBUG opendrift.models.basemodel:813: 853 elements hit coastline, moving back to water
14:08:48 DEBUG opendrift.models.basemodel:836: Lifting 160 elements to seafloor.
14:08:48 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:48 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:48 DEBUG opendrift.models.physics_methods:828: Advecting 43 of 5104 elements above 0.100m with wind-sheared ocean current (0.000194 m/s - 0.141056 m/s)
14:08:48 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:48 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:48 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07908989156444549
14:08:48 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:48 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:48 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:48 DEBUG opendrift.models.oceandrift:582: 509 elements penetrated seafloor, lifting up
14:08:48 DEBUG opendrift.models.oceandrift:600: 73 elements reached seafloor, set to bottom
14:08:48 DEBUG opendrift.models.basemodel:836: Lifting 73 elements to seafloor.
14:08:48 DEBUG opendrift.models.sedimentdrift:112: Settling 73 elements at seafloor
14:08:48 DEBUG opendrift.models.oceandrift:582: 425 elements penetrated seafloor, lifting up
14:08:48 DEBUG opendrift.models.oceandrift:600: 71 elements reached seafloor, set to bottom
14:08:48 DEBUG opendrift.models.basemodel:836: Lifting 71 elements to seafloor.
14:08:48 DEBUG opendrift.models.sedimentdrift:112: Settling 71 elements at seafloor
14:08:48 DEBUG opendrift.models.oceandrift:582: 408 elements penetrated seafloor, lifting up
14:08:48 DEBUG opendrift.models.oceandrift:600: 59 elements reached seafloor, set to bottom
14:08:48 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
14:08:48 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
14:08:48 DEBUG opendrift.models.oceandrift:582: 383 elements penetrated seafloor, lifting up
14:08:48 DEBUG opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
14:08:48 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
14:08:48 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
14:08:48 DEBUG opendrift.models.oceandrift:582: 376 elements penetrated seafloor, lifting up
14:08:48 DEBUG opendrift.models.oceandrift:600: 62 elements reached seafloor, set to bottom
14:08:48 DEBUG opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
14:08:48 DEBUG opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
14:08:48 DEBUG opendrift.models.oceandrift:582: 365 elements penetrated seafloor, lifting up
14:08:48 DEBUG opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
14:08:48 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
14:08:48 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
14:08:48 DEBUG opendrift.models.oceandrift:582: 362 elements penetrated seafloor, lifting up
14:08:48 DEBUG opendrift.models.oceandrift:600: 63 elements reached seafloor, set to bottom
14:08:48 DEBUG opendrift.models.basemodel:836: Lifting 63 elements to seafloor.
14:08:48 DEBUG opendrift.models.sedimentdrift:112: Settling 63 elements at seafloor
14:08:48 DEBUG opendrift.models.oceandrift:582: 338 elements penetrated seafloor, lifting up
14:08:48 DEBUG opendrift.models.oceandrift:600: 52 elements reached seafloor, set to bottom
14:08:48 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
14:08:48 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
14:08:48 DEBUG opendrift.models.oceandrift:582: 328 elements penetrated seafloor, lifting up
14:08:48 DEBUG opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
14:08:48 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
14:08:48 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
14:08:48 DEBUG opendrift.models.oceandrift:582: 315 elements penetrated seafloor, lifting up
14:08:48 DEBUG opendrift.models.oceandrift:600: 52 elements reached seafloor, set to bottom
14:08:48 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
14:08:48 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
14:08:48 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:48 DEBUG opendrift.models.basemodel:2945: 5104 active elements (0 deactivated)
14:08:48 DEBUG opendrift.models.basemodel:1658: to be seeded: 4896, already seeded 5104
14:08:48 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:08:48 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:48 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:48 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:48 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:48 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:48 DEBUG opendrift.models.basemodel:1253: Data needed for 5139 elements
14:08:48 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:48 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 14:00:00 (before)
2023-09-02 15:00:00 (after)
14:08:48 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 14:00:00) in space (linearNDFast)
14:08:48 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:48 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:48 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:48 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:48 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:48 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:48 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.6144 (max)
14:08:48 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:48 DEBUG opendrift.models.basemodel:1527: 5139 active elements
14:08:48 DEBUG opendrift.models.basemodel:1538: 59.09605671642797 <- latitude -> 59.18953659905492
14:08:48 DEBUG opendrift.models.basemodel:1543: 10.903362130894305 <- longitude -> 11.04105224048394
14:08:48 DEBUG opendrift.models.basemodel:1548: -14.966001510620117 <- z -> 0.0
14:08:48 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:48 DEBUG opendrift.models.basemodel:836: Lifting 417 elements to seafloor.
14:08:48 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:48 INFO opendrift.models.basemodel:2882: 2023-09-02 14:36:21.121579 - step 148 of 216 - 5139 active elements (0 deactivated)
14:08:48 DEBUG opendrift.models.basemodel:2888: 4861 elements scheduled.
14:08:48 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:48 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:48 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:48 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:48 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:48 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:48 DEBUG opendrift.models.basemodel:1253: Data needed for 5139 elements
14:08:48 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:48 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:48 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:48 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:48 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:48 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:48 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:48 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:48 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:48 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:48 DEBUG opendrift.models.basemodel:1253: Data needed for 5139 elements
14:08:48 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:48 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 14:00:00 (before)
2023-09-02 15:00:00 (after)
14:08:48 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:48 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:48 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:48 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:48 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:48 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:48 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x23x5) for time after (2023-09-02 15:00:00)
14:08:48 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 14:00:00) in space (linearNDFast)
14:08:48 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:48 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 15:00:00) in space (linearNDFast)
14:08:48 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3339 elements, expanding data 1
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 2
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3339 elements, expanding data 1
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 2
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3434 elements, expanding data 1
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 244 elements, expanding data 2
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 30 elements, expanding data 3
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3434 elements, expanding data 1
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 244 elements, expanding data 2
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 30 elements, expanding data 3
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3434 elements, expanding data 1
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 244 elements, expanding data 2
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 30 elements, expanding data 3
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3434 elements, expanding data 1
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 244 elements, expanding data 2
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 30 elements, expanding data 3
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3434 elements, expanding data 1
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 244 elements, expanding data 2
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 30 elements, expanding data 3
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4343 elements, expanding data 1
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2047 elements, expanding data 2
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4343 elements, expanding data 1
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2047 elements, expanding data 2
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4343 elements, expanding data 1
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2047 elements, expanding data 2
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4343 elements, expanding data 1
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2047 elements, expanding data 2
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4343 elements, expanding data 1
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2047 elements, expanding data 2
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3339 elements, expanding data 1
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 2
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3339 elements, expanding data 1
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 2
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3339 elements, expanding data 1
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 2
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3339 elements, expanding data 1
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 2
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3339 elements, expanding data 1
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 2
14:08:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:48 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 14:00:00, weight 0.39) and
after (2023-09-02 15:00:00, weight 0.61) in time
14:08:48 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.09664843235224 and -58.95895830958911 degrees.
14:08:48 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.09664843235224 and -58.95895830958911 degrees.
14:08:48 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:48 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:48 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:48 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:48 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:48 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:48 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.730288 (min) 1.09793 (max)
14:08:48 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.04483 (min) 0.8573 (max)
14:08:48 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -5.8e-05 (min) 0.000688962 (max)
14:08:48 DEBUG opendrift.models.basemodel:1524: x_wind: -5.34982 (min) 10.6908 (max)
14:08:48 DEBUG opendrift.models.basemodel:1524: y_wind: -9.35759 (min) 6.23014 (max)
14:08:48 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:48 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:48 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:48 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:48 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:48 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:49 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:49 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.6144 (max)
14:08:49 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:49 DEBUG opendrift.models.basemodel:1527: 5139 active elements
14:08:49 DEBUG opendrift.models.basemodel:1538: 59.09605671642797 <- latitude -> 59.18953659905492
14:08:49 DEBUG opendrift.models.basemodel:1543: 10.903362130894305 <- longitude -> 11.04105224048394
14:08:49 DEBUG opendrift.models.basemodel:1548: -14.93443775177002 <- z -> 0.0
14:08:49 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:49 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:49 DEBUG opendrift.models.physics_methods:1050: min: 0.057968, mean: 2.991675, max: 9.158002
14:08:49 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.057968, mean: 2.991675, max: 9.158002
14:08:49 DEBUG opendrift.models.basemodel:813: 870 elements hit coastline, moving back to water
14:08:49 DEBUG opendrift.models.basemodel:836: Lifting 152 elements to seafloor.
14:08:49 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:49 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:49 DEBUG opendrift.models.physics_methods:828: Advecting 39 of 5139 elements above 0.100m with wind-sheared ocean current (0.011123 m/s - 0.148462 m/s)
14:08:49 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:49 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:49 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10378175114782333
14:08:49 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:49 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:49 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:49 DEBUG opendrift.models.oceandrift:582: 582 elements penetrated seafloor, lifting up
14:08:49 DEBUG opendrift.models.oceandrift:600: 78 elements reached seafloor, set to bottom
14:08:49 DEBUG opendrift.models.basemodel:836: Lifting 78 elements to seafloor.
14:08:49 DEBUG opendrift.models.sedimentdrift:112: Settling 78 elements at seafloor
14:08:49 DEBUG opendrift.models.oceandrift:582: 448 elements penetrated seafloor, lifting up
14:08:49 DEBUG opendrift.models.oceandrift:600: 79 elements reached seafloor, set to bottom
14:08:49 DEBUG opendrift.models.basemodel:836: Lifting 79 elements to seafloor.
14:08:49 DEBUG opendrift.models.sedimentdrift:112: Settling 79 elements at seafloor
14:08:49 DEBUG opendrift.models.oceandrift:582: 412 elements penetrated seafloor, lifting up
14:08:49 DEBUG opendrift.models.oceandrift:600: 65 elements reached seafloor, set to bottom
14:08:49 DEBUG opendrift.models.basemodel:836: Lifting 65 elements to seafloor.
14:08:49 DEBUG opendrift.models.sedimentdrift:112: Settling 65 elements at seafloor
14:08:49 DEBUG opendrift.models.oceandrift:582: 333 elements penetrated seafloor, lifting up
14:08:49 DEBUG opendrift.models.oceandrift:600: 59 elements reached seafloor, set to bottom
14:08:49 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
14:08:49 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
14:08:49 DEBUG opendrift.models.oceandrift:582: 365 elements penetrated seafloor, lifting up
14:08:49 DEBUG opendrift.models.oceandrift:600: 54 elements reached seafloor, set to bottom
14:08:49 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
14:08:49 DEBUG opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
14:08:49 DEBUG opendrift.models.oceandrift:582: 356 elements penetrated seafloor, lifting up
14:08:49 DEBUG opendrift.models.oceandrift:600: 42 elements reached seafloor, set to bottom
14:08:49 DEBUG opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
14:08:49 DEBUG opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
14:08:49 DEBUG opendrift.models.oceandrift:582: 371 elements penetrated seafloor, lifting up
14:08:49 DEBUG opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
14:08:49 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
14:08:49 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
14:08:49 DEBUG opendrift.models.oceandrift:582: 359 elements penetrated seafloor, lifting up
14:08:49 DEBUG opendrift.models.oceandrift:600: 52 elements reached seafloor, set to bottom
14:08:49 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
14:08:49 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
14:08:49 DEBUG opendrift.models.oceandrift:582: 341 elements penetrated seafloor, lifting up
14:08:49 DEBUG opendrift.models.oceandrift:600: 44 elements reached seafloor, set to bottom
14:08:49 DEBUG opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
14:08:49 DEBUG opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
14:08:49 DEBUG opendrift.models.oceandrift:582: 333 elements penetrated seafloor, lifting up
14:08:49 DEBUG opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
14:08:49 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
14:08:49 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
14:08:49 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:49 DEBUG opendrift.models.basemodel:2945: 5139 active elements (0 deactivated)
14:08:49 DEBUG opendrift.models.basemodel:1658: to be seeded: 4861, already seeded 5139
14:08:49 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:08:49 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:49 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:49 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:49 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:49 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:49 DEBUG opendrift.models.basemodel:1253: Data needed for 5174 elements
14:08:49 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:49 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 14:00:00 (before)
2023-09-02 15:00:00 (after)
14:08:49 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 14:00:00) in space (linearNDFast)
14:08:49 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:49 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:49 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:49 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:49 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:49 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:49 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5855 (max)
14:08:49 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:49 DEBUG opendrift.models.basemodel:1527: 5174 active elements
14:08:49 DEBUG opendrift.models.basemodel:1538: 59.0966875723981 <- latitude -> 59.18805405639485
14:08:49 DEBUG opendrift.models.basemodel:1543: 10.904589106531994 <- longitude -> 11.04225709989143
14:08:49 DEBUG opendrift.models.basemodel:1548: -15.137259488189926 <- z -> 0.0
14:08:49 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:49 DEBUG opendrift.models.basemodel:836: Lifting 386 elements to seafloor.
14:08:49 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:49 INFO opendrift.models.basemodel:2882: 2023-09-02 14:46:21.121579 - step 149 of 216 - 5174 active elements (0 deactivated)
14:08:49 DEBUG opendrift.models.basemodel:2888: 4826 elements scheduled.
14:08:49 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:49 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:49 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:49 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:49 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:49 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:49 DEBUG opendrift.models.basemodel:1253: Data needed for 5174 elements
14:08:49 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:49 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:49 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:49 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:49 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:49 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:49 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:49 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:49 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:49 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:49 DEBUG opendrift.models.basemodel:1253: Data needed for 5174 elements
14:08:49 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:49 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 14:00:00 (before)
2023-09-02 15:00:00 (after)
14:08:50 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:50 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:50 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:50 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:50 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:50 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:50 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x23x6) for time after (2023-09-02 15:00:00)
14:08:50 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 14:00:00) in space (linearNDFast)
14:08:50 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:50 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 15:00:00) in space (linearNDFast)
14:08:50 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3367 elements, expanding data 1
14:08:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 2
14:08:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3367 elements, expanding data 1
14:08:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 2
14:08:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3452 elements, expanding data 1
14:08:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 251 elements, expanding data 2
14:08:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 3
14:08:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3452 elements, expanding data 1
14:08:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 251 elements, expanding data 2
14:08:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 3
14:08:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3452 elements, expanding data 1
14:08:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 251 elements, expanding data 2
14:08:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 3
14:08:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3452 elements, expanding data 1
14:08:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 251 elements, expanding data 2
14:08:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 3
14:08:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3452 elements, expanding data 1
14:08:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 251 elements, expanding data 2
14:08:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 3
14:08:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3452 elements, expanding data 1
14:08:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 251 elements, expanding data 2
14:08:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 3
14:08:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4367 elements, expanding data 1
14:08:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2043 elements, expanding data 2
14:08:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4367 elements, expanding data 1
14:08:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2043 elements, expanding data 2
14:08:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4367 elements, expanding data 1
14:08:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2043 elements, expanding data 2
14:08:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4367 elements, expanding data 1
14:08:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2043 elements, expanding data 2
14:08:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4367 elements, expanding data 1
14:08:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2043 elements, expanding data 2
14:08:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4367 elements, expanding data 1
14:08:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2043 elements, expanding data 2
14:08:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3367 elements, expanding data 1
14:08:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 2
14:08:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3367 elements, expanding data 1
14:08:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 2
14:08:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3367 elements, expanding data 1
14:08:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 2
14:08:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3367 elements, expanding data 1
14:08:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 2
14:08:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3367 elements, expanding data 1
14:08:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 2
14:08:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3367 elements, expanding data 1
14:08:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 2
14:08:50 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 14:00:00, weight 0.23) and
after (2023-09-02 15:00:00, weight 0.77) in time
14:08:50 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.09542145794025 and -58.957753460250785 degrees.
14:08:50 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.09542145794025 and -58.957753460250785 degrees.
14:08:50 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:50 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:50 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:50 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:50 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:50 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:50 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.786988 (min) 1.04514 (max)
14:08:50 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.04759 (min) 0.767567 (max)
14:08:50 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -5.07833e-05 (min) 0.00066535 (max)
14:08:50 DEBUG opendrift.models.basemodel:1524: x_wind: -5.24322 (min) 9.25879 (max)
14:08:50 DEBUG opendrift.models.basemodel:1524: y_wind: -8.47631 (min) 5.99217 (max)
14:08:50 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:50 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:50 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:50 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:50 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:50 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:50 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:50 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5855 (max)
14:08:50 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:50 DEBUG opendrift.models.basemodel:1527: 5174 active elements
14:08:50 DEBUG opendrift.models.basemodel:1538: 59.0966875723981 <- latitude -> 59.18805405639485
14:08:50 DEBUG opendrift.models.basemodel:1543: 10.904589106531994 <- longitude -> 11.04225709989143
14:08:50 DEBUG opendrift.models.basemodel:1548: -15.137259488189926 <- z -> 0.0
14:08:50 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:50 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:50 DEBUG opendrift.models.physics_methods:1050: min: 0.046295, mean: 3.011195, max: 8.490854
14:08:50 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.046295, mean: 3.011195, max: 8.490854
14:08:50 DEBUG opendrift.models.basemodel:813: 814 elements hit coastline, moving back to water
14:08:50 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
14:08:50 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:50 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:50 DEBUG opendrift.models.physics_methods:828: Advecting 38 of 5174 elements above 0.100m with wind-sheared ocean current (0.004470 m/s - 0.155712 m/s)
14:08:50 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:50 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:50 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08921237876375197
14:08:50 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:50 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:50 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:50 DEBUG opendrift.models.oceandrift:582: 564 elements penetrated seafloor, lifting up
14:08:50 DEBUG opendrift.models.oceandrift:600: 60 elements reached seafloor, set to bottom
14:08:50 DEBUG opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
14:08:50 DEBUG opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
14:08:50 DEBUG opendrift.models.oceandrift:582: 457 elements penetrated seafloor, lifting up
14:08:50 DEBUG opendrift.models.oceandrift:600: 56 elements reached seafloor, set to bottom
14:08:50 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
14:08:50 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
14:08:50 DEBUG opendrift.models.oceandrift:582: 441 elements penetrated seafloor, lifting up
14:08:50 DEBUG opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
14:08:50 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
14:08:50 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
14:08:50 DEBUG opendrift.models.oceandrift:582: 385 elements penetrated seafloor, lifting up
14:08:50 DEBUG opendrift.models.oceandrift:600: 59 elements reached seafloor, set to bottom
14:08:50 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
14:08:50 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
14:08:50 DEBUG opendrift.models.oceandrift:582: 351 elements penetrated seafloor, lifting up
14:08:50 DEBUG opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
14:08:50 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
14:08:50 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
14:08:50 DEBUG opendrift.models.oceandrift:582: 349 elements penetrated seafloor, lifting up
14:08:50 DEBUG opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
14:08:50 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
14:08:50 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
14:08:50 DEBUG opendrift.models.oceandrift:582: 368 elements penetrated seafloor, lifting up
14:08:50 DEBUG opendrift.models.oceandrift:600: 56 elements reached seafloor, set to bottom
14:08:50 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
14:08:50 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
14:08:50 DEBUG opendrift.models.oceandrift:582: 342 elements penetrated seafloor, lifting up
14:08:50 DEBUG opendrift.models.oceandrift:600: 54 elements reached seafloor, set to bottom
14:08:50 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
14:08:50 DEBUG opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
14:08:50 DEBUG opendrift.models.oceandrift:582: 324 elements penetrated seafloor, lifting up
14:08:50 DEBUG opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
14:08:50 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
14:08:50 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
14:08:50 DEBUG opendrift.models.oceandrift:582: 322 elements penetrated seafloor, lifting up
14:08:50 DEBUG opendrift.models.oceandrift:600: 44 elements reached seafloor, set to bottom
14:08:50 DEBUG opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
14:08:50 DEBUG opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
14:08:50 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:50 DEBUG opendrift.models.basemodel:2945: 5174 active elements (0 deactivated)
14:08:50 DEBUG opendrift.models.basemodel:1658: to be seeded: 4826, already seeded 5174
14:08:50 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:08:50 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:50 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:50 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:50 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:50 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:50 DEBUG opendrift.models.basemodel:1253: Data needed for 5208 elements
14:08:50 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:50 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 14:00:00 (before)
2023-09-02 15:00:00 (after)
14:08:50 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 14:00:00) in space (linearNDFast)
14:08:50 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:50 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:50 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:50 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:50 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:50 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:50 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.6466 (max)
14:08:50 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:50 DEBUG opendrift.models.basemodel:1527: 5208 active elements
14:08:50 DEBUG opendrift.models.basemodel:1538: 59.095465092444314 <- latitude -> 59.190084693060165
14:08:50 DEBUG opendrift.models.basemodel:1543: 10.904589106531997 <- longitude -> 11.039658346878204
14:08:50 DEBUG opendrift.models.basemodel:1548: -14.811654090881348 <- z -> 0.0
14:08:50 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:50 DEBUG opendrift.models.basemodel:836: Lifting 419 elements to seafloor.
14:08:50 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:50 INFO opendrift.models.basemodel:2882: 2023-09-02 14:56:21.121579 - step 150 of 216 - 5208 active elements (0 deactivated)
14:08:50 DEBUG opendrift.models.basemodel:2888: 4792 elements scheduled.
14:08:50 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:50 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:50 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:50 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:50 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:50 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:50 DEBUG opendrift.models.basemodel:1253: Data needed for 5208 elements
14:08:50 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:50 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:50 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:50 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:50 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:50 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:50 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:50 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:50 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:50 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:50 DEBUG opendrift.models.basemodel:1253: Data needed for 5208 elements
14:08:50 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:50 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 14:00:00 (before)
2023-09-02 15:00:00 (after)
14:08:51 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:51 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:51 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:51 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:51 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:51 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:51 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x23x5) for time after (2023-09-02 15:00:00)
14:08:51 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 14:00:00) in space (linearNDFast)
14:08:51 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:51 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 15:00:00) in space (linearNDFast)
14:08:51 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3360 elements, expanding data 1
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 2
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3360 elements, expanding data 1
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 2
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3441 elements, expanding data 1
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 260 elements, expanding data 2
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 3
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3441 elements, expanding data 1
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 260 elements, expanding data 2
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 3
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3441 elements, expanding data 1
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 260 elements, expanding data 2
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 3
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3441 elements, expanding data 1
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 260 elements, expanding data 2
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 3
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3441 elements, expanding data 1
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 260 elements, expanding data 2
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 3
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4402 elements, expanding data 1
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2055 elements, expanding data 2
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4402 elements, expanding data 1
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2055 elements, expanding data 2
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4402 elements, expanding data 1
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2055 elements, expanding data 2
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4402 elements, expanding data 1
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2055 elements, expanding data 2
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4402 elements, expanding data 1
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2055 elements, expanding data 2
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3360 elements, expanding data 1
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 2
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3360 elements, expanding data 1
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 2
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3360 elements, expanding data 1
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 2
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3360 elements, expanding data 1
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 2
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3360 elements, expanding data 1
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 2
14:08:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:51 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 14:00:00, weight 0.06) and
after (2023-09-02 15:00:00, weight 0.94) in time
14:08:51 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.09542145794025 and -58.96035220832506 degrees.
14:08:51 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.09542145794025 and -58.96035220832506 degrees.
14:08:51 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:51 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:51 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:51 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:51 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:51 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:51 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.763446 (min) 1.12042 (max)
14:08:51 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.945805 (min) 0.789929 (max)
14:08:51 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -9.3656e-05 (min) 0.00075723 (max)
14:08:51 DEBUG opendrift.models.basemodel:1524: x_wind: -6.01206 (min) 10.1138 (max)
14:08:51 DEBUG opendrift.models.basemodel:1524: y_wind: -7.50006 (min) 6.63259 (max)
14:08:51 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:51 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:51 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:51 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:51 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:51 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:51 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:51 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.6466 (max)
14:08:51 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:51 DEBUG opendrift.models.basemodel:1527: 5208 active elements
14:08:51 DEBUG opendrift.models.basemodel:1538: 59.095465092444314 <- latitude -> 59.190084693060165
14:08:51 DEBUG opendrift.models.basemodel:1543: 10.904589106531997 <- longitude -> 11.039658346878204
14:08:51 DEBUG opendrift.models.basemodel:1548: -14.763084411621094 <- z -> 0.0
14:08:51 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:51 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:51 DEBUG opendrift.models.physics_methods:1050: min: 0.079054, mean: 2.978584, max: 9.197695
14:08:51 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.079054, mean: 2.978584, max: 9.197695
14:08:51 DEBUG opendrift.models.basemodel:813: 851 elements hit coastline, moving back to water
14:08:51 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:08:51 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:51 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:51 DEBUG opendrift.models.physics_methods:828: Advecting 44 of 5208 elements above 0.100m with wind-sheared ocean current (0.000384 m/s - 0.156018 m/s)
14:08:51 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:51 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:51 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10468326095684051
14:08:51 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:51 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:51 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:51 DEBUG opendrift.models.oceandrift:582: 557 elements penetrated seafloor, lifting up
14:08:51 DEBUG opendrift.models.oceandrift:600: 86 elements reached seafloor, set to bottom
14:08:51 DEBUG opendrift.models.basemodel:836: Lifting 86 elements to seafloor.
14:08:51 DEBUG opendrift.models.sedimentdrift:112: Settling 86 elements at seafloor
14:08:51 DEBUG opendrift.models.oceandrift:582: 423 elements penetrated seafloor, lifting up
14:08:51 DEBUG opendrift.models.oceandrift:600: 80 elements reached seafloor, set to bottom
14:08:51 DEBUG opendrift.models.basemodel:836: Lifting 80 elements to seafloor.
14:08:51 DEBUG opendrift.models.sedimentdrift:112: Settling 80 elements at seafloor
14:08:51 DEBUG opendrift.models.oceandrift:582: 388 elements penetrated seafloor, lifting up
14:08:51 DEBUG opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
14:08:51 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
14:08:51 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
14:08:51 DEBUG opendrift.models.oceandrift:582: 390 elements penetrated seafloor, lifting up
14:08:51 DEBUG opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
14:08:51 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
14:08:51 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
14:08:51 DEBUG opendrift.models.oceandrift:582: 364 elements penetrated seafloor, lifting up
14:08:51 DEBUG opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
14:08:51 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
14:08:51 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
14:08:51 DEBUG opendrift.models.oceandrift:582: 337 elements penetrated seafloor, lifting up
14:08:51 DEBUG opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
14:08:51 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
14:08:51 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
14:08:51 DEBUG opendrift.models.oceandrift:582: 363 elements penetrated seafloor, lifting up
14:08:51 DEBUG opendrift.models.oceandrift:600: 66 elements reached seafloor, set to bottom
14:08:51 DEBUG opendrift.models.basemodel:836: Lifting 66 elements to seafloor.
14:08:51 DEBUG opendrift.models.sedimentdrift:112: Settling 66 elements at seafloor
14:08:51 DEBUG opendrift.models.oceandrift:582: 348 elements penetrated seafloor, lifting up
14:08:51 DEBUG opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
14:08:51 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
14:08:51 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
14:08:51 DEBUG opendrift.models.oceandrift:582: 369 elements penetrated seafloor, lifting up
14:08:51 DEBUG opendrift.models.oceandrift:600: 42 elements reached seafloor, set to bottom
14:08:51 DEBUG opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
14:08:51 DEBUG opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
14:08:51 DEBUG opendrift.models.oceandrift:582: 405 elements penetrated seafloor, lifting up
14:08:51 DEBUG opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
14:08:51 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
14:08:51 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
14:08:51 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:51 DEBUG opendrift.models.basemodel:2945: 5208 active elements (0 deactivated)
14:08:51 DEBUG opendrift.models.basemodel:1658: to be seeded: 4792, already seeded 5208
14:08:51 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:08:51 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:51 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:51 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:51 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:51 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:51 DEBUG opendrift.models.basemodel:1253: Data needed for 5243 elements
14:08:51 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:51 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 15:00:00 (before)
2023-09-02 16:00:00 (after)
14:08:51 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 15:00:00) in space (linearNDFast)
14:08:51 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:51 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:51 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:51 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:51 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:51 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:51 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5937 (max)
14:08:51 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:51 DEBUG opendrift.models.basemodel:1527: 5243 active elements
14:08:51 DEBUG opendrift.models.basemodel:1538: 59.09647778905788 <- latitude -> 59.18864424219163
14:08:51 DEBUG opendrift.models.basemodel:1543: 10.904830463865702 <- longitude -> 11.039532542597206
14:08:51 DEBUG opendrift.models.basemodel:1548: -15.010415809412216 <- z -> 0.0
14:08:51 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:51 DEBUG opendrift.models.basemodel:836: Lifting 402 elements to seafloor.
14:08:51 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:51 INFO opendrift.models.basemodel:2882: 2023-09-02 15:06:21.121579 - step 151 of 216 - 5243 active elements (0 deactivated)
14:08:51 DEBUG opendrift.models.basemodel:2888: 4757 elements scheduled.
14:08:51 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:51 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:51 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:51 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:51 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:51 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:51 DEBUG opendrift.models.basemodel:1253: Data needed for 5243 elements
14:08:51 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:51 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:51 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:51 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:51 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:51 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:51 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:51 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:51 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:51 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:51 DEBUG opendrift.models.basemodel:1253: Data needed for 5243 elements
14:08:51 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:51 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 15:00:00 (before)
2023-09-02 16:00:00 (after)
14:08:52 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:52 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:52 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:52 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:52 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:52 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:52 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x23x6) for time after (2023-09-02 16:00:00)
14:08:52 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 15:00:00) in space (linearNDFast)
14:08:52 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:52 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 16:00:00) in space (linearNDFast)
14:08:52 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3365 elements, expanding data 1
14:08:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 2
14:08:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3365 elements, expanding data 1
14:08:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 2
14:08:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3460 elements, expanding data 1
14:08:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 248 elements, expanding data 2
14:08:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 3
14:08:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3460 elements, expanding data 1
14:08:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 248 elements, expanding data 2
14:08:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 3
14:08:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3460 elements, expanding data 1
14:08:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 248 elements, expanding data 2
14:08:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 3
14:08:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3460 elements, expanding data 1
14:08:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 248 elements, expanding data 2
14:08:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 3
14:08:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3460 elements, expanding data 1
14:08:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 248 elements, expanding data 2
14:08:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 3
14:08:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3460 elements, expanding data 1
14:08:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 248 elements, expanding data 2
14:08:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 3
14:08:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4422 elements, expanding data 1
14:08:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2058 elements, expanding data 2
14:08:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4422 elements, expanding data 1
14:08:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2058 elements, expanding data 2
14:08:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4422 elements, expanding data 1
14:08:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2058 elements, expanding data 2
14:08:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4422 elements, expanding data 1
14:08:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2058 elements, expanding data 2
14:08:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4422 elements, expanding data 1
14:08:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2058 elements, expanding data 2
14:08:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4422 elements, expanding data 1
14:08:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2058 elements, expanding data 2
14:08:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3365 elements, expanding data 1
14:08:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 2
14:08:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3365 elements, expanding data 1
14:08:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 2
14:08:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3365 elements, expanding data 1
14:08:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 2
14:08:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3365 elements, expanding data 1
14:08:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 2
14:08:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3365 elements, expanding data 1
14:08:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 2
14:08:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3365 elements, expanding data 1
14:08:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 2
14:08:52 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 15:00:00, weight 0.89) and
after (2023-09-02 16:00:00, weight 0.11) in time
14:08:52 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.095180100503185 and -58.96047801785227 degrees.
14:08:52 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.095180100503185 and -58.96047801785227 degrees.
14:08:52 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:52 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:52 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:52 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:52 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:52 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:52 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.698829 (min) 1.17928 (max)
14:08:52 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.868856 (min) 0.891716 (max)
14:08:52 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -6.38254e-05 (min) 0.000690858 (max)
14:08:52 DEBUG opendrift.models.basemodel:1524: x_wind: -5.10195 (min) 10.7758 (max)
14:08:52 DEBUG opendrift.models.basemodel:1524: y_wind: -9.26997 (min) 6.40282 (max)
14:08:52 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:52 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:52 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:52 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:52 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:52 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:52 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:52 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5937 (max)
14:08:52 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:52 DEBUG opendrift.models.basemodel:1527: 5243 active elements
14:08:52 DEBUG opendrift.models.basemodel:1538: 59.09647778905788 <- latitude -> 59.18864424219163
14:08:52 DEBUG opendrift.models.basemodel:1543: 10.904830463865702 <- longitude -> 11.039532542597206
14:08:52 DEBUG opendrift.models.basemodel:1548: -15.010415809412216 <- z -> 0.0
14:08:52 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:52 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:52 DEBUG opendrift.models.physics_methods:1050: min: 0.066696, mean: 3.067551, max: 9.756678
14:08:52 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.066696, mean: 3.067551, max: 9.756678
14:08:52 DEBUG opendrift.models.basemodel:813: 854 elements hit coastline, moving back to water
14:08:52 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:08:52 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:52 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:52 DEBUG opendrift.models.physics_methods:828: Advecting 41 of 5243 elements above 0.100m with wind-sheared ocean current (0.002113 m/s - 0.149064 m/s)
14:08:52 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:52 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:52 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.11779350507076262
14:08:52 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:52 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:52 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:52 DEBUG opendrift.models.oceandrift:582: 575 elements penetrated seafloor, lifting up
14:08:52 DEBUG opendrift.models.oceandrift:600: 65 elements reached seafloor, set to bottom
14:08:52 DEBUG opendrift.models.basemodel:836: Lifting 65 elements to seafloor.
14:08:52 DEBUG opendrift.models.sedimentdrift:112: Settling 65 elements at seafloor
14:08:52 DEBUG opendrift.models.oceandrift:582: 462 elements penetrated seafloor, lifting up
14:08:52 DEBUG opendrift.models.oceandrift:600: 70 elements reached seafloor, set to bottom
14:08:52 DEBUG opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
14:08:52 DEBUG opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
14:08:52 DEBUG opendrift.models.oceandrift:582: 427 elements penetrated seafloor, lifting up
14:08:52 DEBUG opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
14:08:52 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
14:08:52 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
14:08:52 DEBUG opendrift.models.oceandrift:582: 422 elements penetrated seafloor, lifting up
14:08:52 DEBUG opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
14:08:52 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
14:08:52 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
14:08:52 DEBUG opendrift.models.oceandrift:582: 395 elements penetrated seafloor, lifting up
14:08:52 DEBUG opendrift.models.oceandrift:600: 68 elements reached seafloor, set to bottom
14:08:52 DEBUG opendrift.models.basemodel:836: Lifting 68 elements to seafloor.
14:08:52 DEBUG opendrift.models.sedimentdrift:112: Settling 68 elements at seafloor
14:08:52 DEBUG opendrift.models.oceandrift:582: 399 elements penetrated seafloor, lifting up
14:08:52 DEBUG opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
14:08:52 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
14:08:52 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
14:08:52 DEBUG opendrift.models.oceandrift:582: 382 elements penetrated seafloor, lifting up
14:08:52 DEBUG opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
14:08:52 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
14:08:52 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
14:08:52 DEBUG opendrift.models.oceandrift:582: 349 elements penetrated seafloor, lifting up
14:08:52 DEBUG opendrift.models.oceandrift:600: 58 elements reached seafloor, set to bottom
14:08:52 DEBUG opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
14:08:52 DEBUG opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
14:08:52 DEBUG opendrift.models.oceandrift:582: 346 elements penetrated seafloor, lifting up
14:08:52 DEBUG opendrift.models.oceandrift:600: 54 elements reached seafloor, set to bottom
14:08:52 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
14:08:52 DEBUG opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
14:08:52 DEBUG opendrift.models.oceandrift:582: 342 elements penetrated seafloor, lifting up
14:08:52 DEBUG opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
14:08:52 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
14:08:52 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
14:08:52 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:52 DEBUG opendrift.models.basemodel:2945: 5243 active elements (0 deactivated)
14:08:52 DEBUG opendrift.models.basemodel:1658: to be seeded: 4757, already seeded 5243
14:08:52 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:08:52 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:52 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:52 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:52 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:52 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:52 DEBUG opendrift.models.basemodel:1253: Data needed for 5278 elements
14:08:52 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:52 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 15:00:00 (before)
2023-09-02 16:00:00 (after)
14:08:52 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 15:00:00) in space (linearNDFast)
14:08:52 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:52 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:52 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:52 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:52 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:52 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:52 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.6408 (max)
14:08:52 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:52 DEBUG opendrift.models.basemodel:1527: 5278 active elements
14:08:52 DEBUG opendrift.models.basemodel:1538: 59.095581763330564 <- latitude -> 59.189131613704276
14:08:52 DEBUG opendrift.models.basemodel:1543: 10.905986306765206 <- longitude -> 11.041134282933855
14:08:52 DEBUG opendrift.models.basemodel:1548: -15.032845726013184 <- z -> 0.0
14:08:52 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:52 DEBUG opendrift.models.basemodel:836: Lifting 415 elements to seafloor.
14:08:52 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:52 INFO opendrift.models.basemodel:2882: 2023-09-02 15:16:21.121579 - step 152 of 216 - 5278 active elements (0 deactivated)
14:08:52 DEBUG opendrift.models.basemodel:2888: 4722 elements scheduled.
14:08:52 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:52 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:52 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:52 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:52 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:52 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:52 DEBUG opendrift.models.basemodel:1253: Data needed for 5278 elements
14:08:52 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:52 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:52 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:52 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:52 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:52 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:52 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:52 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:52 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:52 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:52 DEBUG opendrift.models.basemodel:1253: Data needed for 5278 elements
14:08:52 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:52 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 15:00:00 (before)
2023-09-02 16:00:00 (after)
14:08:53 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:53 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:53 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:53 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:53 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:53 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:53 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x23x5) for time after (2023-09-02 16:00:00)
14:08:53 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 15:00:00) in space (linearNDFast)
14:08:53 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:53 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 16:00:00) in space (linearNDFast)
14:08:53 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3397 elements, expanding data 1
14:08:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
14:08:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3397 elements, expanding data 1
14:08:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
14:08:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3478 elements, expanding data 1
14:08:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 253 elements, expanding data 2
14:08:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 3
14:08:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3478 elements, expanding data 1
14:08:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 253 elements, expanding data 2
14:08:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 3
14:08:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3478 elements, expanding data 1
14:08:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 253 elements, expanding data 2
14:08:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 3
14:08:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3478 elements, expanding data 1
14:08:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 253 elements, expanding data 2
14:08:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 3
14:08:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3478 elements, expanding data 1
14:08:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 253 elements, expanding data 2
14:08:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 3
14:08:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4448 elements, expanding data 1
14:08:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2068 elements, expanding data 2
14:08:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4448 elements, expanding data 1
14:08:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2068 elements, expanding data 2
14:08:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4448 elements, expanding data 1
14:08:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2068 elements, expanding data 2
14:08:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4448 elements, expanding data 1
14:08:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2068 elements, expanding data 2
14:08:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4448 elements, expanding data 1
14:08:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2068 elements, expanding data 2
14:08:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3397 elements, expanding data 1
14:08:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
14:08:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3397 elements, expanding data 1
14:08:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
14:08:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3397 elements, expanding data 1
14:08:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
14:08:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3397 elements, expanding data 1
14:08:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
14:08:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3397 elements, expanding data 1
14:08:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
14:08:53 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 15:00:00, weight 0.73) and
after (2023-09-02 16:00:00, weight 0.27) in time
14:08:53 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.09402426245205 and -58.95887628754995 degrees.
14:08:53 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.09402426245205 and -58.95887628754995 degrees.
14:08:53 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:53 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:53 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:53 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:53 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:53 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:53 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.730673 (min) 1.14307 (max)
14:08:53 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.986777 (min) 0.822067 (max)
14:08:53 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000138336 (min) 0.000751259 (max)
14:08:53 DEBUG opendrift.models.basemodel:1524: x_wind: -5.2021 (min) 11.1279 (max)
14:08:53 DEBUG opendrift.models.basemodel:1524: y_wind: -9.13135 (min) 7.55299 (max)
14:08:53 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:53 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:53 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:53 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:53 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:53 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:53 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:53 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.6408 (max)
14:08:53 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:53 DEBUG opendrift.models.basemodel:1527: 5278 active elements
14:08:53 DEBUG opendrift.models.basemodel:1538: 59.095581763330564 <- latitude -> 59.189131613704276
14:08:53 DEBUG opendrift.models.basemodel:1543: 10.905986306765206 <- longitude -> 11.041134282933855
14:08:53 DEBUG opendrift.models.basemodel:1548: -14.984938621520996 <- z -> 0.0
14:08:53 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:53 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:53 DEBUG opendrift.models.physics_methods:1050: min: 0.067528, mean: 3.132762, max: 9.540850
14:08:53 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.067528, mean: 3.132762, max: 9.540850
14:08:53 DEBUG opendrift.models.basemodel:813: 820 elements hit coastline, moving back to water
14:08:53 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
14:08:53 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:53 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:53 DEBUG opendrift.models.physics_methods:828: Advecting 42 of 5278 elements above 0.100m with wind-sheared ocean current (0.002744 m/s - 0.147789 m/s)
14:08:53 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:53 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:53 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.11263988414772033
14:08:53 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:53 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:53 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:53 DEBUG opendrift.models.oceandrift:582: 605 elements penetrated seafloor, lifting up
14:08:53 DEBUG opendrift.models.oceandrift:600: 76 elements reached seafloor, set to bottom
14:08:53 DEBUG opendrift.models.basemodel:836: Lifting 76 elements to seafloor.
14:08:53 DEBUG opendrift.models.sedimentdrift:112: Settling 76 elements at seafloor
14:08:53 DEBUG opendrift.models.oceandrift:582: 443 elements penetrated seafloor, lifting up
14:08:53 DEBUG opendrift.models.oceandrift:600: 72 elements reached seafloor, set to bottom
14:08:53 DEBUG opendrift.models.basemodel:836: Lifting 72 elements to seafloor.
14:08:53 DEBUG opendrift.models.sedimentdrift:112: Settling 72 elements at seafloor
14:08:53 DEBUG opendrift.models.oceandrift:582: 441 elements penetrated seafloor, lifting up
14:08:53 DEBUG opendrift.models.oceandrift:600: 64 elements reached seafloor, set to bottom
14:08:53 DEBUG opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
14:08:53 DEBUG opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
14:08:53 DEBUG opendrift.models.oceandrift:582: 395 elements penetrated seafloor, lifting up
14:08:53 DEBUG opendrift.models.oceandrift:600: 62 elements reached seafloor, set to bottom
14:08:53 DEBUG opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
14:08:53 DEBUG opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
14:08:53 DEBUG opendrift.models.oceandrift:582: 417 elements penetrated seafloor, lifting up
14:08:53 DEBUG opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
14:08:53 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
14:08:53 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
14:08:53 DEBUG opendrift.models.oceandrift:582: 387 elements penetrated seafloor, lifting up
14:08:53 DEBUG opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
14:08:53 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
14:08:53 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
14:08:53 DEBUG opendrift.models.oceandrift:582: 353 elements penetrated seafloor, lifting up
14:08:53 DEBUG opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
14:08:53 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
14:08:53 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
14:08:53 DEBUG opendrift.models.oceandrift:582: 361 elements penetrated seafloor, lifting up
14:08:53 DEBUG opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
14:08:53 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
14:08:53 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
14:08:53 DEBUG opendrift.models.oceandrift:582: 352 elements penetrated seafloor, lifting up
14:08:53 DEBUG opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
14:08:53 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
14:08:53 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
14:08:53 DEBUG opendrift.models.oceandrift:582: 325 elements penetrated seafloor, lifting up
14:08:53 DEBUG opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
14:08:53 DEBUG opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
14:08:53 DEBUG opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
14:08:53 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:53 DEBUG opendrift.models.basemodel:2945: 5278 active elements (0 deactivated)
14:08:53 DEBUG opendrift.models.basemodel:1658: to be seeded: 4722, already seeded 5278
14:08:53 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:08:53 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:53 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:53 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:53 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:53 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:53 DEBUG opendrift.models.basemodel:1253: Data needed for 5312 elements
14:08:53 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:53 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 15:00:00 (before)
2023-09-02 16:00:00 (after)
14:08:53 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 15:00:00) in space (linearNDFast)
14:08:53 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:53 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:53 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:53 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:53 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:53 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:53 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5901 (max)
14:08:53 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:53 DEBUG opendrift.models.basemodel:1527: 5312 active elements
14:08:53 DEBUG opendrift.models.basemodel:1538: 59.09658297961615 <- latitude -> 59.18864424219163
14:08:53 DEBUG opendrift.models.basemodel:1543: 10.907557347816896 <- longitude -> 11.038948462496206
14:08:53 DEBUG opendrift.models.basemodel:1548: -14.532766441645268 <- z -> 0.0
14:08:53 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:53 DEBUG opendrift.models.basemodel:836: Lifting 413 elements to seafloor.
14:08:53 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:53 INFO opendrift.models.basemodel:2882: 2023-09-02 15:26:21.121579 - step 153 of 216 - 5312 active elements (0 deactivated)
14:08:53 DEBUG opendrift.models.basemodel:2888: 4688 elements scheduled.
14:08:53 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:53 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:53 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:53 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:53 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:53 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:53 DEBUG opendrift.models.basemodel:1253: Data needed for 5312 elements
14:08:53 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:53 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:53 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:53 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:53 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:53 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:53 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:53 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:53 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:53 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:53 DEBUG opendrift.models.basemodel:1253: Data needed for 5312 elements
14:08:53 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:53 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 15:00:00 (before)
2023-09-02 16:00:00 (after)
14:08:54 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:54 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:54 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:54 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:54 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:54 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:54 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x23x5) for time after (2023-09-02 16:00:00)
14:08:54 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 15:00:00) in space (linearNDFast)
14:08:54 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:54 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 16:00:00) in space (linearNDFast)
14:08:54 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3385 elements, expanding data 1
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 2
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3385 elements, expanding data 1
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 2
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3473 elements, expanding data 1
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 251 elements, expanding data 2
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 32 elements, expanding data 3
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3473 elements, expanding data 1
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 251 elements, expanding data 2
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 32 elements, expanding data 3
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3473 elements, expanding data 1
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 251 elements, expanding data 2
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 32 elements, expanding data 3
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3473 elements, expanding data 1
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 251 elements, expanding data 2
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 32 elements, expanding data 3
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3473 elements, expanding data 1
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 251 elements, expanding data 2
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 32 elements, expanding data 3
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4465 elements, expanding data 1
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2073 elements, expanding data 2
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4465 elements, expanding data 1
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2073 elements, expanding data 2
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4465 elements, expanding data 1
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2073 elements, expanding data 2
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4465 elements, expanding data 1
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2073 elements, expanding data 2
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4465 elements, expanding data 1
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2073 elements, expanding data 2
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3385 elements, expanding data 1
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 2
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3385 elements, expanding data 1
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 2
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3385 elements, expanding data 1
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 2
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3385 elements, expanding data 1
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 2
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3385 elements, expanding data 1
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 2
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:54 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 15:00:00, weight 0.56) and
after (2023-09-02 16:00:00, weight 0.44) in time
14:08:54 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.09245321668199 and -58.96106210244905 degrees.
14:08:54 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.09245321668199 and -58.96106210244905 degrees.
14:08:54 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:54 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:54 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:54 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:54 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:54 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:54 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.772161 (min) 1.41322 (max)
14:08:54 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.920096 (min) 0.739986 (max)
14:08:54 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -4.67807e-05 (min) 0.000788289 (max)
14:08:54 DEBUG opendrift.models.basemodel:1524: x_wind: -5.32944 (min) 10.321 (max)
14:08:54 DEBUG opendrift.models.basemodel:1524: y_wind: -9.4034 (min) 7.11994 (max)
14:08:54 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:54 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:54 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:54 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:54 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:54 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:54 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:54 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5901 (max)
14:08:54 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:54 DEBUG opendrift.models.basemodel:1527: 5312 active elements
14:08:54 DEBUG opendrift.models.basemodel:1538: 59.09658297961615 <- latitude -> 59.18864424219163
14:08:54 DEBUG opendrift.models.basemodel:1543: 10.907557347816896 <- longitude -> 11.038948462496206
14:08:54 DEBUG opendrift.models.basemodel:1548: -14.532766441645268 <- z -> 0.0
14:08:54 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:54 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:54 DEBUG opendrift.models.physics_methods:1050: min: 0.077136, mean: 3.246937, max: 8.974688
14:08:54 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.077136, mean: 3.246937, max: 8.974688
14:08:54 DEBUG opendrift.models.basemodel:813: 806 elements hit coastline, moving back to water
14:08:54 DEBUG opendrift.models.basemodel:836: Lifting 149 elements to seafloor.
14:08:54 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:54 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:54 DEBUG opendrift.models.physics_methods:828: Advecting 39 of 5312 elements above 0.100m with wind-sheared ocean current (0.008180 m/s - 0.114354 m/s)
14:08:54 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:54 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:54 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09966871140392303
14:08:54 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:54 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:54 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:54 DEBUG opendrift.models.oceandrift:582: 587 elements penetrated seafloor, lifting up
14:08:54 DEBUG opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
14:08:54 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
14:08:54 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
14:08:54 DEBUG opendrift.models.oceandrift:582: 472 elements penetrated seafloor, lifting up
14:08:54 DEBUG opendrift.models.oceandrift:600: 56 elements reached seafloor, set to bottom
14:08:54 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
14:08:54 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
14:08:54 DEBUG opendrift.models.oceandrift:582: 450 elements penetrated seafloor, lifting up
14:08:54 DEBUG opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
14:08:54 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
14:08:54 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
14:08:54 DEBUG opendrift.models.oceandrift:582: 463 elements penetrated seafloor, lifting up
14:08:54 DEBUG opendrift.models.oceandrift:600: 66 elements reached seafloor, set to bottom
14:08:54 DEBUG opendrift.models.basemodel:836: Lifting 66 elements to seafloor.
14:08:54 DEBUG opendrift.models.sedimentdrift:112: Settling 66 elements at seafloor
14:08:54 DEBUG opendrift.models.oceandrift:582: 435 elements penetrated seafloor, lifting up
14:08:54 DEBUG opendrift.models.oceandrift:600: 52 elements reached seafloor, set to bottom
14:08:54 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
14:08:54 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
14:08:54 DEBUG opendrift.models.oceandrift:582: 431 elements penetrated seafloor, lifting up
14:08:54 DEBUG opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
14:08:54 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
14:08:54 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
14:08:54 DEBUG opendrift.models.oceandrift:582: 394 elements penetrated seafloor, lifting up
14:08:54 DEBUG opendrift.models.oceandrift:600: 60 elements reached seafloor, set to bottom
14:08:54 DEBUG opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
14:08:54 DEBUG opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
14:08:54 DEBUG opendrift.models.oceandrift:582: 386 elements penetrated seafloor, lifting up
14:08:54 DEBUG opendrift.models.oceandrift:600: 62 elements reached seafloor, set to bottom
14:08:54 DEBUG opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
14:08:54 DEBUG opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
14:08:54 DEBUG opendrift.models.oceandrift:582: 385 elements penetrated seafloor, lifting up
14:08:54 DEBUG opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
14:08:54 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
14:08:54 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
14:08:54 DEBUG opendrift.models.oceandrift:582: 391 elements penetrated seafloor, lifting up
14:08:54 DEBUG opendrift.models.oceandrift:600: 54 elements reached seafloor, set to bottom
14:08:54 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
14:08:54 DEBUG opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
14:08:54 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:54 DEBUG opendrift.models.basemodel:2945: 5312 active elements (0 deactivated)
14:08:54 DEBUG opendrift.models.basemodel:1658: to be seeded: 4688, already seeded 5312
14:08:54 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:08:54 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:54 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:54 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:54 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:54 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:54 DEBUG opendrift.models.basemodel:1253: Data needed for 5347 elements
14:08:54 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:54 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 15:00:00 (before)
2023-09-02 16:00:00 (after)
14:08:54 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 15:00:00) in space (linearNDFast)
14:08:54 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:54 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:54 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:54 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:54 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:54 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:54 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5961 (max)
14:08:54 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:54 DEBUG opendrift.models.basemodel:1527: 5347 active elements
14:08:54 DEBUG opendrift.models.basemodel:1538: 59.09638642296976 <- latitude -> 59.18910807875809
14:08:54 DEBUG opendrift.models.basemodel:1543: 10.910407198941579 <- longitude -> 11.036554627029552
14:08:54 DEBUG opendrift.models.basemodel:1548: -15.59012508392334 <- z -> 0.0
14:08:54 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:54 DEBUG opendrift.models.basemodel:836: Lifting 425 elements to seafloor.
14:08:54 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:54 INFO opendrift.models.basemodel:2882: 2023-09-02 15:36:21.121579 - step 154 of 216 - 5347 active elements (0 deactivated)
14:08:54 DEBUG opendrift.models.basemodel:2888: 4653 elements scheduled.
14:08:54 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:54 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:54 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:54 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:54 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:54 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:54 DEBUG opendrift.models.basemodel:1253: Data needed for 5347 elements
14:08:54 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:54 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:54 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:54 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:54 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:54 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:54 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:54 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:54 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:54 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:54 DEBUG opendrift.models.basemodel:1253: Data needed for 5347 elements
14:08:54 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:54 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 15:00:00 (before)
2023-09-02 16:00:00 (after)
14:08:54 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:54 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:54 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:54 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:54 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:54 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:54 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x23x6) for time after (2023-09-02 16:00:00)
14:08:54 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 15:00:00) in space (linearNDFast)
14:08:54 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:54 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 16:00:00) in space (linearNDFast)
14:08:54 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3412 elements, expanding data 1
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 2
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3412 elements, expanding data 1
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 2
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3500 elements, expanding data 1
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 247 elements, expanding data 2
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 3
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3500 elements, expanding data 1
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 247 elements, expanding data 2
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 3
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3500 elements, expanding data 1
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 247 elements, expanding data 2
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 3
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3500 elements, expanding data 1
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 247 elements, expanding data 2
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 3
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3500 elements, expanding data 1
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 247 elements, expanding data 2
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 3
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3500 elements, expanding data 1
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 247 elements, expanding data 2
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 3
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4488 elements, expanding data 1
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2105 elements, expanding data 2
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4488 elements, expanding data 1
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2105 elements, expanding data 2
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4488 elements, expanding data 1
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2105 elements, expanding data 2
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4488 elements, expanding data 1
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2105 elements, expanding data 2
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4488 elements, expanding data 1
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2105 elements, expanding data 2
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4488 elements, expanding data 1
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2105 elements, expanding data 2
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3412 elements, expanding data 1
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 2
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3412 elements, expanding data 1
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 2
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3412 elements, expanding data 1
14:08:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 2
14:08:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3412 elements, expanding data 1
14:08:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 2
14:08:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3412 elements, expanding data 1
14:08:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 2
14:08:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3412 elements, expanding data 1
14:08:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 2
14:08:55 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 15:00:00, weight 0.39) and
after (2023-09-02 16:00:00, weight 0.61) in time
14:08:55 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.08960337063012 and -58.963455931951856 degrees.
14:08:55 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.08960337063012 and -58.963455931951856 degrees.
14:08:55 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:55 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:55 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:55 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:55 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:55 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:55 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.859989 (min) 1.21522 (max)
14:08:55 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.931425 (min) 0.766103 (max)
14:08:55 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000146779 (min) 0.000730389 (max)
14:08:55 DEBUG opendrift.models.basemodel:1524: x_wind: -4.71378 (min) 10.796 (max)
14:08:55 DEBUG opendrift.models.basemodel:1524: y_wind: -7.64583 (min) 7.84297 (max)
14:08:55 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:55 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:55 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:55 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:55 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:55 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:55 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:55 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5961 (max)
14:08:55 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:55 DEBUG opendrift.models.basemodel:1527: 5347 active elements
14:08:55 DEBUG opendrift.models.basemodel:1538: 59.09638642296976 <- latitude -> 59.18910807875809
14:08:55 DEBUG opendrift.models.basemodel:1543: 10.910407198941579 <- longitude -> 11.036554627029552
14:08:55 DEBUG opendrift.models.basemodel:1548: -15.59012508392334 <- z -> 0.0
14:08:55 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:55 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:55 DEBUG opendrift.models.physics_methods:1050: min: 0.013053, mean: 3.291868, max: 9.318525
14:08:55 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.013053, mean: 3.291868, max: 9.318525
14:08:55 DEBUG opendrift.models.basemodel:813: 815 elements hit coastline, moving back to water
14:08:55 DEBUG opendrift.models.basemodel:836: Lifting 153 elements to seafloor.
14:08:55 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:55 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:55 DEBUG opendrift.models.physics_methods:828: Advecting 41 of 5347 elements above 0.100m with wind-sheared ocean current (0.003071 m/s - 0.170483 m/s)
14:08:55 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:55 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:55 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10745167634971618
14:08:55 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:55 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:55 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:55 DEBUG opendrift.models.oceandrift:582: 606 elements penetrated seafloor, lifting up
14:08:55 DEBUG opendrift.models.oceandrift:600: 69 elements reached seafloor, set to bottom
14:08:55 DEBUG opendrift.models.basemodel:836: Lifting 69 elements to seafloor.
14:08:55 DEBUG opendrift.models.sedimentdrift:112: Settling 69 elements at seafloor
14:08:55 DEBUG opendrift.models.oceandrift:582: 493 elements penetrated seafloor, lifting up
14:08:55 DEBUG opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
14:08:55 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
14:08:55 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
14:08:55 DEBUG opendrift.models.oceandrift:582: 479 elements penetrated seafloor, lifting up
14:08:55 DEBUG opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
14:08:55 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
14:08:55 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
14:08:55 DEBUG opendrift.models.oceandrift:582: 429 elements penetrated seafloor, lifting up
14:08:55 DEBUG opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
14:08:55 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
14:08:55 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
14:08:55 DEBUG opendrift.models.oceandrift:582: 418 elements penetrated seafloor, lifting up
14:08:55 DEBUG opendrift.models.oceandrift:600: 62 elements reached seafloor, set to bottom
14:08:55 DEBUG opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
14:08:55 DEBUG opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
14:08:55 DEBUG opendrift.models.oceandrift:582: 430 elements penetrated seafloor, lifting up
14:08:55 DEBUG opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
14:08:55 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
14:08:55 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
14:08:55 DEBUG opendrift.models.oceandrift:582: 375 elements penetrated seafloor, lifting up
14:08:55 DEBUG opendrift.models.oceandrift:600: 58 elements reached seafloor, set to bottom
14:08:55 DEBUG opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
14:08:55 DEBUG opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
14:08:55 DEBUG opendrift.models.oceandrift:582: 390 elements penetrated seafloor, lifting up
14:08:55 DEBUG opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
14:08:55 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
14:08:55 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
14:08:55 DEBUG opendrift.models.oceandrift:582: 420 elements penetrated seafloor, lifting up
14:08:55 DEBUG opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
14:08:55 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
14:08:55 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
14:08:55 DEBUG opendrift.models.oceandrift:582: 387 elements penetrated seafloor, lifting up
14:08:55 DEBUG opendrift.models.oceandrift:600: 64 elements reached seafloor, set to bottom
14:08:55 DEBUG opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
14:08:55 DEBUG opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
14:08:55 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:55 DEBUG opendrift.models.basemodel:2945: 5347 active elements (0 deactivated)
14:08:55 DEBUG opendrift.models.basemodel:1658: to be seeded: 4653, already seeded 5347
14:08:55 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:08:55 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:55 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:55 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:55 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:55 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:55 DEBUG opendrift.models.basemodel:1253: Data needed for 5382 elements
14:08:55 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:55 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 15:00:00 (before)
2023-09-02 16:00:00 (after)
14:08:55 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 15:00:00) in space (linearNDFast)
14:08:55 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:55 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:55 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:55 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:55 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:55 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:55 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5961 (max)
14:08:55 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:55 DEBUG opendrift.models.basemodel:1527: 5382 active elements
14:08:55 DEBUG opendrift.models.basemodel:1538: 59.09638642296976 <- latitude -> 59.18761651842128
14:08:55 DEBUG opendrift.models.basemodel:1543: 10.909732786499236 <- longitude -> 11.0395073259426
14:08:55 DEBUG opendrift.models.basemodel:1548: -15.58012508392334 <- z -> 0.0
14:08:55 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:55 DEBUG opendrift.models.basemodel:836: Lifting 395 elements to seafloor.
14:08:55 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:55 INFO opendrift.models.basemodel:2882: 2023-09-02 15:46:21.121579 - step 155 of 216 - 5382 active elements (0 deactivated)
14:08:55 DEBUG opendrift.models.basemodel:2888: 4618 elements scheduled.
14:08:55 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:55 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:55 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:55 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:55 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:55 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:55 DEBUG opendrift.models.basemodel:1253: Data needed for 5382 elements
14:08:55 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:55 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:55 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:55 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:55 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:55 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:55 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:55 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:55 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:55 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:55 DEBUG opendrift.models.basemodel:1253: Data needed for 5382 elements
14:08:55 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:55 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 15:00:00 (before)
2023-09-02 16:00:00 (after)
14:08:55 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:55 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:55 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:55 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:55 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:55 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:55 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x23x6) for time after (2023-09-02 16:00:00)
14:08:55 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 15:00:00) in space (linearNDFast)
14:08:55 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:55 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 16:00:00) in space (linearNDFast)
14:08:55 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3449 elements, expanding data 1
14:08:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 2
14:08:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3449 elements, expanding data 1
14:08:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 2
14:08:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3538 elements, expanding data 1
14:08:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 251 elements, expanding data 2
14:08:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 3
14:08:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3538 elements, expanding data 1
14:08:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 251 elements, expanding data 2
14:08:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 3
14:08:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3538 elements, expanding data 1
14:08:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 251 elements, expanding data 2
14:08:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 3
14:08:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3538 elements, expanding data 1
14:08:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 251 elements, expanding data 2
14:08:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 3
14:08:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3538 elements, expanding data 1
14:08:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 251 elements, expanding data 2
14:08:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 3
14:08:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3538 elements, expanding data 1
14:08:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 251 elements, expanding data 2
14:08:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 3
14:08:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4505 elements, expanding data 1
14:08:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2115 elements, expanding data 2
14:08:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4505 elements, expanding data 1
14:08:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2115 elements, expanding data 2
14:08:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4505 elements, expanding data 1
14:08:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2115 elements, expanding data 2
14:08:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4505 elements, expanding data 1
14:08:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2115 elements, expanding data 2
14:08:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4505 elements, expanding data 1
14:08:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2115 elements, expanding data 2
14:08:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4505 elements, expanding data 1
14:08:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2115 elements, expanding data 2
14:08:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3449 elements, expanding data 1
14:08:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 2
14:08:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3449 elements, expanding data 1
14:08:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 2
14:08:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3449 elements, expanding data 1
14:08:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 2
14:08:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3449 elements, expanding data 1
14:08:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 2
14:08:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3449 elements, expanding data 1
14:08:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 2
14:08:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3449 elements, expanding data 1
14:08:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 2
14:08:55 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 15:00:00, weight 0.23) and
after (2023-09-02 16:00:00, weight 0.77) in time
14:08:55 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.09027778384006 and -58.960503224217106 degrees.
14:08:56 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.09027778384006 and -58.960503224217106 degrees.
14:08:56 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:56 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:56 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:56 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:56 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:56 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:56 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.773013 (min) 1.24113 (max)
14:08:56 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.01614 (min) 0.810256 (max)
14:08:56 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -9.54219e-05 (min) 0.000786534 (max)
14:08:56 DEBUG opendrift.models.basemodel:1524: x_wind: -3.77069 (min) 9.71935 (max)
14:08:56 DEBUG opendrift.models.basemodel:1524: y_wind: -7.13613 (min) 8.34258 (max)
14:08:56 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:56 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:56 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:56 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:56 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:56 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:56 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:56 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5961 (max)
14:08:56 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:56 DEBUG opendrift.models.basemodel:1527: 5382 active elements
14:08:56 DEBUG opendrift.models.basemodel:1538: 59.09638642296976 <- latitude -> 59.18761651842128
14:08:56 DEBUG opendrift.models.basemodel:1543: 10.909732786499236 <- longitude -> 11.0395073259426
14:08:56 DEBUG opendrift.models.basemodel:1548: -15.58012508392334 <- z -> 0.0
14:08:56 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:56 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:56 DEBUG opendrift.models.physics_methods:1050: min: 0.073799, mean: 3.426081, max: 9.254501
14:08:56 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.073799, mean: 3.426081, max: 9.254501
14:08:56 DEBUG opendrift.models.basemodel:813: 822 elements hit coastline, moving back to water
14:08:56 DEBUG opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
14:08:56 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:56 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:56 DEBUG opendrift.models.physics_methods:828: Advecting 45 of 5382 elements above 0.100m with wind-sheared ocean current (0.001765 m/s - 0.146706 m/s)
14:08:56 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:56 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:56 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10598028642328261
14:08:56 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:56 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:56 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:56 DEBUG opendrift.models.oceandrift:582: 623 elements penetrated seafloor, lifting up
14:08:56 DEBUG opendrift.models.oceandrift:600: 77 elements reached seafloor, set to bottom
14:08:56 DEBUG opendrift.models.basemodel:836: Lifting 77 elements to seafloor.
14:08:56 DEBUG opendrift.models.sedimentdrift:112: Settling 77 elements at seafloor
14:08:56 DEBUG opendrift.models.oceandrift:582: 475 elements penetrated seafloor, lifting up
14:08:56 DEBUG opendrift.models.oceandrift:600: 63 elements reached seafloor, set to bottom
14:08:56 DEBUG opendrift.models.basemodel:836: Lifting 63 elements to seafloor.
14:08:56 DEBUG opendrift.models.sedimentdrift:112: Settling 63 elements at seafloor
14:08:56 DEBUG opendrift.models.oceandrift:582: 474 elements penetrated seafloor, lifting up
14:08:56 DEBUG opendrift.models.oceandrift:600: 67 elements reached seafloor, set to bottom
14:08:56 DEBUG opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
14:08:56 DEBUG opendrift.models.sedimentdrift:112: Settling 67 elements at seafloor
14:08:56 DEBUG opendrift.models.oceandrift:582: 463 elements penetrated seafloor, lifting up
14:08:56 DEBUG opendrift.models.oceandrift:600: 66 elements reached seafloor, set to bottom
14:08:56 DEBUG opendrift.models.basemodel:836: Lifting 66 elements to seafloor.
14:08:56 DEBUG opendrift.models.sedimentdrift:112: Settling 66 elements at seafloor
14:08:56 DEBUG opendrift.models.oceandrift:582: 415 elements penetrated seafloor, lifting up
14:08:56 DEBUG opendrift.models.oceandrift:600: 64 elements reached seafloor, set to bottom
14:08:56 DEBUG opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
14:08:56 DEBUG opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
14:08:56 DEBUG opendrift.models.oceandrift:582: 394 elements penetrated seafloor, lifting up
14:08:56 DEBUG opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
14:08:56 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
14:08:56 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
14:08:56 DEBUG opendrift.models.oceandrift:582: 368 elements penetrated seafloor, lifting up
14:08:56 DEBUG opendrift.models.oceandrift:600: 54 elements reached seafloor, set to bottom
14:08:56 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
14:08:56 DEBUG opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
14:08:56 DEBUG opendrift.models.oceandrift:582: 387 elements penetrated seafloor, lifting up
14:08:56 DEBUG opendrift.models.oceandrift:600: 59 elements reached seafloor, set to bottom
14:08:56 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
14:08:56 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
14:08:56 DEBUG opendrift.models.oceandrift:582: 373 elements penetrated seafloor, lifting up
14:08:56 DEBUG opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
14:08:56 DEBUG opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
14:08:56 DEBUG opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
14:08:56 DEBUG opendrift.models.oceandrift:582: 378 elements penetrated seafloor, lifting up
14:08:56 DEBUG opendrift.models.oceandrift:600: 54 elements reached seafloor, set to bottom
14:08:56 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
14:08:56 DEBUG opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
14:08:56 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:56 DEBUG opendrift.models.basemodel:2945: 5382 active elements (0 deactivated)
14:08:56 DEBUG opendrift.models.basemodel:1658: to be seeded: 4618, already seeded 5382
14:08:56 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:08:56 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:56 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:56 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:56 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:56 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:56 DEBUG opendrift.models.basemodel:1253: Data needed for 5417 elements
14:08:56 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:56 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 15:00:00 (before)
2023-09-02 16:00:00 (after)
14:08:56 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 15:00:00) in space (linearNDFast)
14:08:56 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:56 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:56 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:56 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:56 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:56 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:56 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.6199 (max)
14:08:56 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:56 DEBUG opendrift.models.basemodel:1527: 5417 active elements
14:08:56 DEBUG opendrift.models.basemodel:1538: 59.095963376426326 <- latitude -> 59.1878489601812
14:08:56 DEBUG opendrift.models.basemodel:1543: 10.90607534156086 <- longitude -> 11.039242614194336
14:08:56 DEBUG opendrift.models.basemodel:1548: -14.46898292541504 <- z -> 0.0
14:08:56 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:56 DEBUG opendrift.models.basemodel:836: Lifting 420 elements to seafloor.
14:08:56 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:56 INFO opendrift.models.basemodel:2882: 2023-09-02 15:56:21.121579 - step 156 of 216 - 5417 active elements (0 deactivated)
14:08:56 DEBUG opendrift.models.basemodel:2888: 4583 elements scheduled.
14:08:56 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:56 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:56 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:56 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:56 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:56 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:56 DEBUG opendrift.models.basemodel:1253: Data needed for 5417 elements
14:08:56 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:56 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:56 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:56 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:56 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:56 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:56 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:56 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:56 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:56 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:56 DEBUG opendrift.models.basemodel:1253: Data needed for 5417 elements
14:08:56 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:56 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 15:00:00 (before)
2023-09-02 16:00:00 (after)
14:08:56 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:56 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:56 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:56 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:56 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:56 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:56 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x23x5) for time after (2023-09-02 16:00:00)
14:08:56 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 15:00:00) in space (linearNDFast)
14:08:56 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:56 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 16:00:00) in space (linearNDFast)
14:08:56 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3449 elements, expanding data 1
14:08:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 2
14:08:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3449 elements, expanding data 1
14:08:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 2
14:08:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3542 elements, expanding data 1
14:08:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 258 elements, expanding data 2
14:08:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 3
14:08:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3542 elements, expanding data 1
14:08:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 258 elements, expanding data 2
14:08:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 3
14:08:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3542 elements, expanding data 1
14:08:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 258 elements, expanding data 2
14:08:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 3
14:08:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3542 elements, expanding data 1
14:08:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 258 elements, expanding data 2
14:08:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 3
14:08:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3542 elements, expanding data 1
14:08:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 258 elements, expanding data 2
14:08:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 3
14:08:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4534 elements, expanding data 1
14:08:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2156 elements, expanding data 2
14:08:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4534 elements, expanding data 1
14:08:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2156 elements, expanding data 2
14:08:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4534 elements, expanding data 1
14:08:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2156 elements, expanding data 2
14:08:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4534 elements, expanding data 1
14:08:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2156 elements, expanding data 2
14:08:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4534 elements, expanding data 1
14:08:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2156 elements, expanding data 2
14:08:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3449 elements, expanding data 1
14:08:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 2
14:08:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3449 elements, expanding data 1
14:08:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 2
14:08:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3449 elements, expanding data 1
14:08:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 2
14:08:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3449 elements, expanding data 1
14:08:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 2
14:08:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3449 elements, expanding data 1
14:08:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 2
14:08:56 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 15:00:00, weight 0.06) and
after (2023-09-02 16:00:00, weight 0.94) in time
14:08:56 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.09393523667892 and -58.960767940084615 degrees.
14:08:56 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.09393523667892 and -58.960767940084615 degrees.
14:08:56 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:56 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:56 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:56 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:56 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:56 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:56 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.776 (min) 1.17262 (max)
14:08:56 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.01129 (min) 0.694362 (max)
14:08:56 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -9.88565e-05 (min) 0.000769275 (max)
14:08:56 DEBUG opendrift.models.basemodel:1524: x_wind: -4.80802 (min) 10.5317 (max)
14:08:56 DEBUG opendrift.models.basemodel:1524: y_wind: -6.58533 (min) 8.25765 (max)
14:08:56 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:56 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:56 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:56 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:56 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:56 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:56 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:56 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.6199 (max)
14:08:56 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:56 DEBUG opendrift.models.basemodel:1527: 5417 active elements
14:08:56 DEBUG opendrift.models.basemodel:1538: 59.095963376426326 <- latitude -> 59.1878489601812
14:08:56 DEBUG opendrift.models.basemodel:1543: 10.90607534156086 <- longitude -> 11.039242614194336
14:08:56 DEBUG opendrift.models.basemodel:1548: -14.46898292541504 <- z -> 0.0
14:08:56 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:56 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:56 DEBUG opendrift.models.physics_methods:1050: min: 0.017470, mean: 3.554974, max: 9.211577
14:08:56 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.017470, mean: 3.554974, max: 9.211577
14:08:56 DEBUG opendrift.models.basemodel:813: 831 elements hit coastline, moving back to water
14:08:56 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:08:56 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:56 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:56 DEBUG opendrift.models.physics_methods:828: Advecting 47 of 5417 elements above 0.100m with wind-sheared ocean current (0.002412 m/s - 0.172083 m/s)
14:08:56 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:56 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:56 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10499949516351699
14:08:56 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:56 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:56 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:56 DEBUG opendrift.models.oceandrift:582: 628 elements penetrated seafloor, lifting up
14:08:56 DEBUG opendrift.models.oceandrift:600: 71 elements reached seafloor, set to bottom
14:08:56 DEBUG opendrift.models.basemodel:836: Lifting 71 elements to seafloor.
14:08:56 DEBUG opendrift.models.sedimentdrift:112: Settling 71 elements at seafloor
14:08:56 DEBUG opendrift.models.oceandrift:582: 495 elements penetrated seafloor, lifting up
14:08:56 DEBUG opendrift.models.oceandrift:600: 67 elements reached seafloor, set to bottom
14:08:56 DEBUG opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
14:08:56 DEBUG opendrift.models.sedimentdrift:112: Settling 67 elements at seafloor
14:08:56 DEBUG opendrift.models.oceandrift:582: 484 elements penetrated seafloor, lifting up
14:08:56 DEBUG opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
14:08:56 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
14:08:56 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
14:08:56 DEBUG opendrift.models.oceandrift:582: 446 elements penetrated seafloor, lifting up
14:08:56 DEBUG opendrift.models.oceandrift:600: 56 elements reached seafloor, set to bottom
14:08:56 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
14:08:56 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
14:08:56 DEBUG opendrift.models.oceandrift:582: 455 elements penetrated seafloor, lifting up
14:08:56 DEBUG opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
14:08:56 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
14:08:56 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
14:08:57 DEBUG opendrift.models.oceandrift:582: 454 elements penetrated seafloor, lifting up
14:08:57 DEBUG opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
14:08:57 DEBUG opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
14:08:57 DEBUG opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
14:08:57 DEBUG opendrift.models.oceandrift:582: 417 elements penetrated seafloor, lifting up
14:08:57 DEBUG opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
14:08:57 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
14:08:57 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
14:08:57 DEBUG opendrift.models.oceandrift:582: 404 elements penetrated seafloor, lifting up
14:08:57 DEBUG opendrift.models.oceandrift:600: 58 elements reached seafloor, set to bottom
14:08:57 DEBUG opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
14:08:57 DEBUG opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
14:08:57 DEBUG opendrift.models.oceandrift:582: 388 elements penetrated seafloor, lifting up
14:08:57 DEBUG opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
14:08:57 DEBUG opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
14:08:57 DEBUG opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
14:08:57 DEBUG opendrift.models.oceandrift:582: 369 elements penetrated seafloor, lifting up
14:08:57 DEBUG opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
14:08:57 DEBUG opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
14:08:57 DEBUG opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
14:08:57 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:57 DEBUG opendrift.models.basemodel:2945: 5417 active elements (0 deactivated)
14:08:57 DEBUG opendrift.models.basemodel:1658: to be seeded: 4583, already seeded 5417
14:08:57 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:08:57 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:57 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:57 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:57 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:57 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:57 DEBUG opendrift.models.basemodel:1253: Data needed for 5451 elements
14:08:57 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:57 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 16:00:00 (before)
2023-09-02 17:00:00 (after)
14:08:57 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 16:00:00) in space (linearNDFast)
14:08:57 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:57 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:57 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:57 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:57 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:57 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:57 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.59 (max)
14:08:57 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:57 DEBUG opendrift.models.basemodel:1527: 5451 active elements
14:08:57 DEBUG opendrift.models.basemodel:1538: 59.09652048293796 <- latitude -> 59.189899190854845
14:08:57 DEBUG opendrift.models.basemodel:1543: 10.905325046908775 <- longitude -> 11.037205782136544
14:08:57 DEBUG opendrift.models.basemodel:1548: -14.949105836431933 <- z -> 0.0
14:08:57 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:57 DEBUG opendrift.models.basemodel:836: Lifting 355 elements to seafloor.
14:08:57 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:57 INFO opendrift.models.basemodel:2882: 2023-09-02 16:06:21.121579 - step 157 of 216 - 5451 active elements (0 deactivated)
14:08:57 DEBUG opendrift.models.basemodel:2888: 4549 elements scheduled.
14:08:57 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:57 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:57 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:57 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:57 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:57 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:57 DEBUG opendrift.models.basemodel:1253: Data needed for 5451 elements
14:08:57 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:57 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:57 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:57 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:57 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:57 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:57 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:57 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:57 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:57 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:57 DEBUG opendrift.models.basemodel:1253: Data needed for 5451 elements
14:08:57 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:57 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 16:00:00 (before)
2023-09-02 17:00:00 (after)
14:08:57 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:57 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:57 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:57 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:57 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:57 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:57 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x23x5) for time after (2023-09-02 17:00:00)
14:08:57 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 16:00:00) in space (linearNDFast)
14:08:57 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:57 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 17:00:00) in space (linearNDFast)
14:08:57 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3449 elements, expanding data 1
14:08:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 2
14:08:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3449 elements, expanding data 1
14:08:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 2
14:08:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3546 elements, expanding data 1
14:08:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 262 elements, expanding data 2
14:08:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 41 elements, expanding data 3
14:08:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3546 elements, expanding data 1
14:08:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 262 elements, expanding data 2
14:08:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 41 elements, expanding data 3
14:08:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3546 elements, expanding data 1
14:08:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 262 elements, expanding data 2
14:08:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 41 elements, expanding data 3
14:08:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3546 elements, expanding data 1
14:08:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 262 elements, expanding data 2
14:08:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 41 elements, expanding data 3
14:08:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3546 elements, expanding data 1
14:08:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 262 elements, expanding data 2
14:08:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 41 elements, expanding data 3
14:08:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4547 elements, expanding data 1
14:08:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2160 elements, expanding data 2
14:08:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4547 elements, expanding data 1
14:08:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2160 elements, expanding data 2
14:08:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4547 elements, expanding data 1
14:08:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2160 elements, expanding data 2
14:08:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4547 elements, expanding data 1
14:08:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2160 elements, expanding data 2
14:08:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4547 elements, expanding data 1
14:08:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2160 elements, expanding data 2
14:08:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3449 elements, expanding data 1
14:08:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 2
14:08:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3449 elements, expanding data 1
14:08:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 2
14:08:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3449 elements, expanding data 1
14:08:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 2
14:08:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3449 elements, expanding data 1
14:08:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 2
14:08:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3449 elements, expanding data 1
14:08:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 2
14:08:58 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 16:00:00, weight 0.89) and
after (2023-09-02 17:00:00, weight 0.11) in time
14:08:58 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.0946855325363 and -58.962804775057414 degrees.
14:08:58 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.0946855325363 and -58.962804775057414 degrees.
14:08:58 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:58 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:58 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:58 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:58 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:58 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:58 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.790521 (min) 1.06396 (max)
14:08:58 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.13527 (min) 0.782176 (max)
14:08:58 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000148493 (min) 0.000747078 (max)
14:08:58 DEBUG opendrift.models.basemodel:1524: x_wind: -3.33777 (min) 10.8032 (max)
14:08:58 DEBUG opendrift.models.basemodel:1524: y_wind: -5.90733 (min) 7.09732 (max)
14:08:58 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:58 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:58 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:58 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:58 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:58 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:58 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:58 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.59 (max)
14:08:58 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:58 DEBUG opendrift.models.basemodel:1527: 5451 active elements
14:08:58 DEBUG opendrift.models.basemodel:1538: 59.09652048293796 <- latitude -> 59.189899190854845
14:08:58 DEBUG opendrift.models.basemodel:1543: 10.905325046908775 <- longitude -> 11.037205782136544
14:08:58 DEBUG opendrift.models.basemodel:1548: -14.949105836431933 <- z -> 0.0
14:08:58 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:58 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:58 DEBUG opendrift.models.physics_methods:1050: min: 0.079893, mean: 3.632079, max: 9.369898
14:08:58 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.079893, mean: 3.632079, max: 9.369898
14:08:58 DEBUG opendrift.models.basemodel:813: 817 elements hit coastline, moving back to water
14:08:58 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:08:58 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:58 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:58 DEBUG opendrift.models.physics_methods:828: Advecting 40 of 5451 elements above 0.100m with wind-sheared ocean current (0.001666 m/s - 0.157118 m/s)
14:08:58 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:58 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:58 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10863965340717315
14:08:58 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:58 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:58 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:58 DEBUG opendrift.models.oceandrift:582: 633 elements penetrated seafloor, lifting up
14:08:58 DEBUG opendrift.models.oceandrift:600: 68 elements reached seafloor, set to bottom
14:08:58 DEBUG opendrift.models.basemodel:836: Lifting 68 elements to seafloor.
14:08:58 DEBUG opendrift.models.sedimentdrift:112: Settling 68 elements at seafloor
14:08:58 DEBUG opendrift.models.oceandrift:582: 501 elements penetrated seafloor, lifting up
14:08:58 DEBUG opendrift.models.oceandrift:600: 70 elements reached seafloor, set to bottom
14:08:58 DEBUG opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
14:08:58 DEBUG opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
14:08:58 DEBUG opendrift.models.oceandrift:582: 472 elements penetrated seafloor, lifting up
14:08:58 DEBUG opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
14:08:58 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
14:08:58 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
14:08:58 DEBUG opendrift.models.oceandrift:582: 436 elements penetrated seafloor, lifting up
14:08:58 DEBUG opendrift.models.oceandrift:600: 65 elements reached seafloor, set to bottom
14:08:58 DEBUG opendrift.models.basemodel:836: Lifting 65 elements to seafloor.
14:08:58 DEBUG opendrift.models.sedimentdrift:112: Settling 65 elements at seafloor
14:08:58 DEBUG opendrift.models.oceandrift:582: 457 elements penetrated seafloor, lifting up
14:08:58 DEBUG opendrift.models.oceandrift:600: 54 elements reached seafloor, set to bottom
14:08:58 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
14:08:58 DEBUG opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
14:08:58 DEBUG opendrift.models.oceandrift:582: 425 elements penetrated seafloor, lifting up
14:08:58 DEBUG opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
14:08:58 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
14:08:58 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
14:08:58 DEBUG opendrift.models.oceandrift:582: 413 elements penetrated seafloor, lifting up
14:08:58 DEBUG opendrift.models.oceandrift:600: 52 elements reached seafloor, set to bottom
14:08:58 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
14:08:58 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
14:08:58 DEBUG opendrift.models.oceandrift:582: 405 elements penetrated seafloor, lifting up
14:08:58 DEBUG opendrift.models.oceandrift:600: 58 elements reached seafloor, set to bottom
14:08:58 DEBUG opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
14:08:58 DEBUG opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
14:08:58 DEBUG opendrift.models.oceandrift:582: 388 elements penetrated seafloor, lifting up
14:08:58 DEBUG opendrift.models.oceandrift:600: 42 elements reached seafloor, set to bottom
14:08:58 DEBUG opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
14:08:58 DEBUG opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
14:08:58 DEBUG opendrift.models.oceandrift:582: 412 elements penetrated seafloor, lifting up
14:08:58 DEBUG opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
14:08:58 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
14:08:58 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
14:08:58 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:58 DEBUG opendrift.models.basemodel:2945: 5451 active elements (0 deactivated)
14:08:58 DEBUG opendrift.models.basemodel:1658: to be seeded: 4549, already seeded 5451
14:08:58 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:08:58 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:58 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:58 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:58 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:58 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:58 DEBUG opendrift.models.basemodel:1253: Data needed for 5486 elements
14:08:58 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:58 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 16:00:00 (before)
2023-09-02 17:00:00 (after)
14:08:58 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 16:00:00) in space (linearNDFast)
14:08:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:08:58 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:58 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:58 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:58 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:58 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:58 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5711 (max)
14:08:58 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:58 DEBUG opendrift.models.basemodel:1527: 5486 active elements
14:08:58 DEBUG opendrift.models.basemodel:1538: 59.096605085648974 <- latitude -> 59.18988632202831
14:08:58 DEBUG opendrift.models.basemodel:1543: 10.903709660932076 <- longitude -> 11.037581026433822
14:08:58 DEBUG opendrift.models.basemodel:1548: -15.291383743286133 <- z -> 0.0
14:08:58 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:58 DEBUG opendrift.models.basemodel:836: Lifting 418 elements to seafloor.
14:08:58 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:58 INFO opendrift.models.basemodel:2882: 2023-09-02 16:16:21.121579 - step 158 of 216 - 5486 active elements (0 deactivated)
14:08:58 DEBUG opendrift.models.basemodel:2888: 4514 elements scheduled.
14:08:58 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:58 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:58 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:58 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:58 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:58 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:58 DEBUG opendrift.models.basemodel:1253: Data needed for 5486 elements
14:08:58 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:58 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:58 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:58 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:58 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:58 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:58 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:58 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:58 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:58 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:58 DEBUG opendrift.models.basemodel:1253: Data needed for 5486 elements
14:08:58 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:58 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 16:00:00 (before)
2023-09-02 17:00:00 (after)
14:08:58 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:58 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:59 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:59 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:59 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:59 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:59 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x23x6) for time after (2023-09-02 17:00:00)
14:08:59 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 16:00:00) in space (linearNDFast)
14:08:59 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:59 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 17:00:00) in space (linearNDFast)
14:08:59 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3455 elements, expanding data 1
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 2
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3455 elements, expanding data 1
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 2
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3553 elements, expanding data 1
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 265 elements, expanding data 2
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 3
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3553 elements, expanding data 1
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 265 elements, expanding data 2
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 3
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3553 elements, expanding data 1
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 265 elements, expanding data 2
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 3
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3553 elements, expanding data 1
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 265 elements, expanding data 2
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 3
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3553 elements, expanding data 1
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 265 elements, expanding data 2
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 3
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3553 elements, expanding data 1
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 265 elements, expanding data 2
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 3
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4578 elements, expanding data 1
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2141 elements, expanding data 2
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4578 elements, expanding data 1
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2141 elements, expanding data 2
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4578 elements, expanding data 1
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2141 elements, expanding data 2
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4578 elements, expanding data 1
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2141 elements, expanding data 2
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4578 elements, expanding data 1
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2141 elements, expanding data 2
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4578 elements, expanding data 1
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2141 elements, expanding data 2
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3455 elements, expanding data 1
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 2
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3455 elements, expanding data 1
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 2
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3455 elements, expanding data 1
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 2
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3455 elements, expanding data 1
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 2
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3455 elements, expanding data 1
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 2
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3455 elements, expanding data 1
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 2
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:08:59 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 16:00:00, weight 0.73) and
after (2023-09-02 17:00:00, weight 0.27) in time
14:08:59 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.0963009097459 and -58.96242952892144 degrees.
14:08:59 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.0963009097459 and -58.96242952892144 degrees.
14:08:59 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:59 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:59 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:59 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:08:59 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:08:59 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:59 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.815226 (min) 1.13044 (max)
14:08:59 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.01131 (min) 0.690072 (max)
14:08:59 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000104995 (min) 0.000783506 (max)
14:08:59 DEBUG opendrift.models.basemodel:1524: x_wind: -4.42555 (min) 11.9154 (max)
14:08:59 DEBUG opendrift.models.basemodel:1524: y_wind: -6.60558 (min) 7.79705 (max)
14:08:59 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:08:59 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:08:59 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:08:59 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:08:59 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:08:59 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:08:59 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:08:59 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5711 (max)
14:08:59 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:59 DEBUG opendrift.models.basemodel:1527: 5486 active elements
14:08:59 DEBUG opendrift.models.basemodel:1538: 59.096605085648974 <- latitude -> 59.18988632202831
14:08:59 DEBUG opendrift.models.basemodel:1543: 10.903709660932076 <- longitude -> 11.037581026433822
14:08:59 DEBUG opendrift.models.basemodel:1548: -15.279634475708008 <- z -> 0.0
14:08:59 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:59 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:08:59 DEBUG opendrift.models.physics_methods:1050: min: 0.150346, mean: 3.672765, max: 10.262226
14:08:59 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.150346, mean: 3.672765, max: 10.262226
14:08:59 DEBUG opendrift.models.basemodel:813: 880 elements hit coastline, moving back to water
14:08:59 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
14:08:59 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:08:59 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:08:59 DEBUG opendrift.models.physics_methods:828: Advecting 48 of 5486 elements above 0.100m with wind-sheared ocean current (0.008014 m/s - 0.160925 m/s)
14:08:59 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:08:59 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:08:59 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.13031642555912015
14:08:59 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:08:59 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:08:59 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:08:59 DEBUG opendrift.models.oceandrift:582: 621 elements penetrated seafloor, lifting up
14:08:59 DEBUG opendrift.models.oceandrift:600: 52 elements reached seafloor, set to bottom
14:08:59 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
14:08:59 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
14:08:59 DEBUG opendrift.models.oceandrift:582: 516 elements penetrated seafloor, lifting up
14:08:59 DEBUG opendrift.models.oceandrift:600: 52 elements reached seafloor, set to bottom
14:08:59 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
14:08:59 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
14:08:59 DEBUG opendrift.models.oceandrift:582: 483 elements penetrated seafloor, lifting up
14:08:59 DEBUG opendrift.models.oceandrift:600: 62 elements reached seafloor, set to bottom
14:08:59 DEBUG opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
14:08:59 DEBUG opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
14:08:59 DEBUG opendrift.models.oceandrift:582: 479 elements penetrated seafloor, lifting up
14:08:59 DEBUG opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
14:08:59 DEBUG opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
14:08:59 DEBUG opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
14:08:59 DEBUG opendrift.models.oceandrift:582: 471 elements penetrated seafloor, lifting up
14:08:59 DEBUG opendrift.models.oceandrift:600: 58 elements reached seafloor, set to bottom
14:08:59 DEBUG opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
14:08:59 DEBUG opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
14:08:59 DEBUG opendrift.models.oceandrift:582: 405 elements penetrated seafloor, lifting up
14:08:59 DEBUG opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
14:08:59 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
14:08:59 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
14:08:59 DEBUG opendrift.models.oceandrift:582: 429 elements penetrated seafloor, lifting up
14:08:59 DEBUG opendrift.models.oceandrift:600: 59 elements reached seafloor, set to bottom
14:08:59 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
14:08:59 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
14:08:59 DEBUG opendrift.models.oceandrift:582: 414 elements penetrated seafloor, lifting up
14:08:59 DEBUG opendrift.models.oceandrift:600: 54 elements reached seafloor, set to bottom
14:08:59 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
14:08:59 DEBUG opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
14:08:59 DEBUG opendrift.models.oceandrift:582: 412 elements penetrated seafloor, lifting up
14:08:59 DEBUG opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
14:08:59 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
14:08:59 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
14:08:59 DEBUG opendrift.models.oceandrift:582: 393 elements penetrated seafloor, lifting up
14:08:59 DEBUG opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
14:08:59 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
14:08:59 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
14:08:59 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:08:59 DEBUG opendrift.models.basemodel:2945: 5486 active elements (0 deactivated)
14:08:59 DEBUG opendrift.models.basemodel:1658: to be seeded: 4514, already seeded 5486
14:08:59 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:08:59 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:59 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:08:59 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:59 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:59 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:59 DEBUG opendrift.models.basemodel:1253: Data needed for 5521 elements
14:08:59 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:59 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 16:00:00 (before)
2023-09-02 17:00:00 (after)
14:08:59 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 16:00:00) in space (linearNDFast)
14:08:59 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:59 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:08:59 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:59 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:08:59 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:08:59 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:08:59 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5641 (max)
14:08:59 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:08:59 DEBUG opendrift.models.basemodel:1527: 5521 active elements
14:08:59 DEBUG opendrift.models.basemodel:1538: 59.09674371877368 <- latitude -> 59.18874642851324
14:08:59 DEBUG opendrift.models.basemodel:1543: 10.900614993839252 <- longitude -> 11.040328475893157
14:08:59 DEBUG opendrift.models.basemodel:1548: -15.279634475708008 <- z -> 0.0
14:08:59 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:08:59 DEBUG opendrift.models.basemodel:836: Lifting 367 elements to seafloor.
14:08:59 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:08:59 INFO opendrift.models.basemodel:2882: 2023-09-02 16:26:21.121579 - step 159 of 216 - 5521 active elements (0 deactivated)
14:08:59 DEBUG opendrift.models.basemodel:2888: 4479 elements scheduled.
14:08:59 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:08:59 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:59 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:08:59 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:59 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:08:59 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:59 DEBUG opendrift.models.basemodel:1253: Data needed for 5521 elements
14:08:59 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:08:59 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:08:59 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:08:59 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:08:59 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:08:59 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:08:59 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:08:59 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:08:59 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:59 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:08:59 DEBUG opendrift.models.basemodel:1253: Data needed for 5521 elements
14:08:59 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:08:59 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 16:00:00 (before)
2023-09-02 17:00:00 (after)
14:08:59 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:08:59 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:08:59 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:08:59 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:08:59 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:08:59 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:08:59 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x24x6) for time after (2023-09-02 17:00:00)
14:08:59 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 16:00:00) in space (linearNDFast)
14:08:59 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:59 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 17:00:00) in space (linearNDFast)
14:08:59 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3461 elements, expanding data 1
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 2
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3461 elements, expanding data 1
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 2
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3569 elements, expanding data 1
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 264 elements, expanding data 2
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 3
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3569 elements, expanding data 1
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 264 elements, expanding data 2
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 3
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3569 elements, expanding data 1
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 264 elements, expanding data 2
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 3
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3569 elements, expanding data 1
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 264 elements, expanding data 2
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 3
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3569 elements, expanding data 1
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 264 elements, expanding data 2
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 3
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3569 elements, expanding data 1
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 264 elements, expanding data 2
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 3
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4597 elements, expanding data 1
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2157 elements, expanding data 2
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4597 elements, expanding data 1
14:08:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2157 elements, expanding data 2
14:09:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4597 elements, expanding data 1
14:09:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2157 elements, expanding data 2
14:09:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4597 elements, expanding data 1
14:09:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2157 elements, expanding data 2
14:09:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4597 elements, expanding data 1
14:09:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2157 elements, expanding data 2
14:09:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4597 elements, expanding data 1
14:09:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2157 elements, expanding data 2
14:09:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3461 elements, expanding data 1
14:09:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 2
14:09:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3461 elements, expanding data 1
14:09:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 2
14:09:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3461 elements, expanding data 1
14:09:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 2
14:09:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3461 elements, expanding data 1
14:09:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 2
14:09:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3461 elements, expanding data 1
14:09:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 2
14:09:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3461 elements, expanding data 1
14:09:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 2
14:09:00 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 16:00:00, weight 0.56) and
after (2023-09-02 17:00:00, weight 0.44) in time
14:09:00 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.09939558401802 and -58.959682077260275 degrees.
14:09:00 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.09939558401802 and -58.959682077260275 degrees.
14:09:00 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:00 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:00 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:00 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:00 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:00 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:00 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.700807 (min) 1.16186 (max)
14:09:00 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.925433 (min) 0.826344 (max)
14:09:00 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000199444 (min) 0.000692937 (max)
14:09:00 DEBUG opendrift.models.basemodel:1524: x_wind: -3.75913 (min) 11.1197 (max)
14:09:00 DEBUG opendrift.models.basemodel:1524: y_wind: -5.8671 (min) 7.60365 (max)
14:09:00 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:00 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:00 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:00 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:00 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:00 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:00 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:00 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5641 (max)
14:09:00 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:00 DEBUG opendrift.models.basemodel:1527: 5521 active elements
14:09:00 DEBUG opendrift.models.basemodel:1538: 59.09674371877368 <- latitude -> 59.18874642851324
14:09:00 DEBUG opendrift.models.basemodel:1543: 10.900614993839252 <- longitude -> 11.040328475893157
14:09:00 DEBUG opendrift.models.basemodel:1548: -15.279634475708008 <- z -> 0.0
14:09:00 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:00 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:00 DEBUG opendrift.models.physics_methods:1050: min: 0.025890, mean: 3.763705, max: 10.059957
14:09:00 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.025890, mean: 3.763705, max: 10.059957
14:09:00 DEBUG opendrift.models.basemodel:813: 825 elements hit coastline, moving back to water
14:09:00 DEBUG opendrift.models.basemodel:836: Lifting 150 elements to seafloor.
14:09:00 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:00 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:00 DEBUG opendrift.models.physics_methods:828: Advecting 42 of 5521 elements above 0.100m with wind-sheared ocean current (0.000402 m/s - 0.160859 m/s)
14:09:00 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:00 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:00 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.12523013339956282
14:09:00 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:00 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:00 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:00 DEBUG opendrift.models.oceandrift:582: 638 elements penetrated seafloor, lifting up
14:09:00 DEBUG opendrift.models.oceandrift:600: 59 elements reached seafloor, set to bottom
14:09:00 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
14:09:00 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
14:09:00 DEBUG opendrift.models.oceandrift:582: 518 elements penetrated seafloor, lifting up
14:09:00 DEBUG opendrift.models.oceandrift:600: 64 elements reached seafloor, set to bottom
14:09:00 DEBUG opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
14:09:00 DEBUG opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
14:09:00 DEBUG opendrift.models.oceandrift:582: 454 elements penetrated seafloor, lifting up
14:09:00 DEBUG opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
14:09:00 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
14:09:00 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
14:09:00 DEBUG opendrift.models.oceandrift:582: 434 elements penetrated seafloor, lifting up
14:09:00 DEBUG opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
14:09:00 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
14:09:00 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
14:09:00 DEBUG opendrift.models.oceandrift:582: 472 elements penetrated seafloor, lifting up
14:09:00 DEBUG opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
14:09:00 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
14:09:00 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
14:09:00 DEBUG opendrift.models.oceandrift:582: 488 elements penetrated seafloor, lifting up
14:09:00 DEBUG opendrift.models.oceandrift:600: 63 elements reached seafloor, set to bottom
14:09:00 DEBUG opendrift.models.basemodel:836: Lifting 63 elements to seafloor.
14:09:00 DEBUG opendrift.models.sedimentdrift:112: Settling 63 elements at seafloor
14:09:00 DEBUG opendrift.models.oceandrift:582: 438 elements penetrated seafloor, lifting up
14:09:00 DEBUG opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
14:09:00 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
14:09:00 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
14:09:00 DEBUG opendrift.models.oceandrift:582: 428 elements penetrated seafloor, lifting up
14:09:00 DEBUG opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
14:09:00 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
14:09:00 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
14:09:00 DEBUG opendrift.models.oceandrift:582: 421 elements penetrated seafloor, lifting up
14:09:00 DEBUG opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
14:09:00 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
14:09:00 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
14:09:00 DEBUG opendrift.models.oceandrift:582: 417 elements penetrated seafloor, lifting up
14:09:00 DEBUG opendrift.models.oceandrift:600: 56 elements reached seafloor, set to bottom
14:09:00 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
14:09:00 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
14:09:00 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:00 DEBUG opendrift.models.basemodel:2945: 5521 active elements (0 deactivated)
14:09:00 DEBUG opendrift.models.basemodel:1658: to be seeded: 4479, already seeded 5521
14:09:00 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:09:00 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:00 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:00 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:00 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:00 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:00 DEBUG opendrift.models.basemodel:1253: Data needed for 5556 elements
14:09:00 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:00 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 16:00:00 (before)
2023-09-02 17:00:00 (after)
14:09:00 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 16:00:00) in space (linearNDFast)
14:09:00 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:00 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:00 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:00 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:00 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:00 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:00 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5665 (max)
14:09:00 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:00 DEBUG opendrift.models.basemodel:1527: 5556 active elements
14:09:00 DEBUG opendrift.models.basemodel:1538: 59.096322849813696 <- latitude -> 59.18925925463081
14:09:00 DEBUG opendrift.models.basemodel:1543: 10.900087264525322 <- longitude -> 11.043347025692047
14:09:00 DEBUG opendrift.models.basemodel:1548: -15.269634475708008 <- z -> 0.0
14:09:00 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:00 DEBUG opendrift.models.basemodel:836: Lifting 399 elements to seafloor.
14:09:00 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:00 INFO opendrift.models.basemodel:2882: 2023-09-02 16:36:21.121579 - step 160 of 216 - 5556 active elements (0 deactivated)
14:09:00 DEBUG opendrift.models.basemodel:2888: 4444 elements scheduled.
14:09:00 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:00 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:00 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:00 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:00 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:00 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:00 DEBUG opendrift.models.basemodel:1253: Data needed for 5556 elements
14:09:00 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:00 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:00 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:00 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:00 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:00 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:00 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:00 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:00 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:00 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:00 DEBUG opendrift.models.basemodel:1253: Data needed for 5556 elements
14:09:00 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:00 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 16:00:00 (before)
2023-09-02 17:00:00 (after)
14:09:01 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:01 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:01 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:01 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:01 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:01 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:01 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x24x6) for time after (2023-09-02 17:00:00)
14:09:01 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 16:00:00) in space (linearNDFast)
14:09:01 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:01 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 17:00:00) in space (linearNDFast)
14:09:01 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3477 elements, expanding data 1
14:09:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 2
14:09:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3477 elements, expanding data 1
14:09:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 2
14:09:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3590 elements, expanding data 1
14:09:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 261 elements, expanding data 2
14:09:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 3
14:09:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3590 elements, expanding data 1
14:09:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 261 elements, expanding data 2
14:09:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 3
14:09:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3590 elements, expanding data 1
14:09:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 261 elements, expanding data 2
14:09:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 3
14:09:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3590 elements, expanding data 1
14:09:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 261 elements, expanding data 2
14:09:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 3
14:09:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3590 elements, expanding data 1
14:09:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 261 elements, expanding data 2
14:09:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 3
14:09:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3590 elements, expanding data 1
14:09:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 261 elements, expanding data 2
14:09:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 3
14:09:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4614 elements, expanding data 1
14:09:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2163 elements, expanding data 2
14:09:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4614 elements, expanding data 1
14:09:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2163 elements, expanding data 2
14:09:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4614 elements, expanding data 1
14:09:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2163 elements, expanding data 2
14:09:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4614 elements, expanding data 1
14:09:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2163 elements, expanding data 2
14:09:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4614 elements, expanding data 1
14:09:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2163 elements, expanding data 2
14:09:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4614 elements, expanding data 1
14:09:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2163 elements, expanding data 2
14:09:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3477 elements, expanding data 1
14:09:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 2
14:09:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3477 elements, expanding data 1
14:09:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 2
14:09:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3477 elements, expanding data 1
14:09:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 2
14:09:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3477 elements, expanding data 1
14:09:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 2
14:09:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3477 elements, expanding data 1
14:09:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 2
14:09:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3477 elements, expanding data 1
14:09:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 2
14:09:01 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 16:00:00, weight 0.39) and
after (2023-09-02 17:00:00, weight 0.61) in time
14:09:01 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.09992329893226 and -58.956663534345545 degrees.
14:09:01 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.09992329893226 and -58.956663534345545 degrees.
14:09:01 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:01 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:01 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:01 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:01 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:01 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:01 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.710783 (min) 1.3565 (max)
14:09:01 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.02236 (min) 0.756715 (max)
14:09:01 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000188783 (min) 0.000802766 (max)
14:09:01 DEBUG opendrift.models.basemodel:1524: x_wind: -4.3922 (min) 10.5057 (max)
14:09:01 DEBUG opendrift.models.basemodel:1524: y_wind: -6.50615 (min) 7.39602 (max)
14:09:01 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:01 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:01 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:01 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:01 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:01 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:01 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:01 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5665 (max)
14:09:01 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:01 DEBUG opendrift.models.basemodel:1527: 5556 active elements
14:09:01 DEBUG opendrift.models.basemodel:1538: 59.096322849813696 <- latitude -> 59.18925925463081
14:09:01 DEBUG opendrift.models.basemodel:1543: 10.900087264525322 <- longitude -> 11.043347025692047
14:09:01 DEBUG opendrift.models.basemodel:1548: -15.269634475708008 <- z -> 0.0
14:09:01 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:01 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:01 DEBUG opendrift.models.physics_methods:1050: min: 0.029375, mean: 3.789705, max: 9.138859
14:09:01 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.029375, mean: 3.789705, max: 9.138859
14:09:01 DEBUG opendrift.models.basemodel:813: 845 elements hit coastline, moving back to water
14:09:01 DEBUG opendrift.models.basemodel:836: Lifting 147 elements to seafloor.
14:09:01 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:01 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:01 DEBUG opendrift.models.physics_methods:828: Advecting 41 of 5556 elements above 0.100m with wind-sheared ocean current (0.005012 m/s - 0.165801 m/s)
14:09:01 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:01 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:01 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10334832057769774
14:09:01 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:01 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:01 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:01 DEBUG opendrift.models.oceandrift:582: 662 elements penetrated seafloor, lifting up
14:09:01 DEBUG opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
14:09:01 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
14:09:01 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
14:09:01 DEBUG opendrift.models.oceandrift:582: 528 elements penetrated seafloor, lifting up
14:09:01 DEBUG opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
14:09:01 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
14:09:01 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
14:09:01 DEBUG opendrift.models.oceandrift:582: 515 elements penetrated seafloor, lifting up
14:09:01 DEBUG opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
14:09:01 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
14:09:01 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
14:09:01 DEBUG opendrift.models.oceandrift:582: 495 elements penetrated seafloor, lifting up
14:09:01 DEBUG opendrift.models.oceandrift:600: 58 elements reached seafloor, set to bottom
14:09:01 DEBUG opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
14:09:01 DEBUG opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
14:09:01 DEBUG opendrift.models.oceandrift:582: 461 elements penetrated seafloor, lifting up
14:09:01 DEBUG opendrift.models.oceandrift:600: 42 elements reached seafloor, set to bottom
14:09:01 DEBUG opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
14:09:01 DEBUG opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
14:09:01 DEBUG opendrift.models.oceandrift:582: 471 elements penetrated seafloor, lifting up
14:09:01 DEBUG opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
14:09:01 DEBUG opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
14:09:01 DEBUG opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
14:09:01 DEBUG opendrift.models.oceandrift:582: 465 elements penetrated seafloor, lifting up
14:09:01 DEBUG opendrift.models.oceandrift:600: 36 elements reached seafloor, set to bottom
14:09:01 DEBUG opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
14:09:01 DEBUG opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
14:09:01 DEBUG opendrift.models.oceandrift:582: 447 elements penetrated seafloor, lifting up
14:09:01 DEBUG opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
14:09:01 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
14:09:01 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
14:09:01 DEBUG opendrift.models.oceandrift:582: 453 elements penetrated seafloor, lifting up
14:09:01 DEBUG opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
14:09:01 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
14:09:01 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
14:09:01 DEBUG opendrift.models.oceandrift:582: 442 elements penetrated seafloor, lifting up
14:09:01 DEBUG opendrift.models.oceandrift:600: 40 elements reached seafloor, set to bottom
14:09:01 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
14:09:01 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
14:09:01 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:01 DEBUG opendrift.models.basemodel:2945: 5556 active elements (0 deactivated)
14:09:01 DEBUG opendrift.models.basemodel:1658: to be seeded: 4444, already seeded 5556
14:09:01 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:09:01 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:01 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:01 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:01 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:01 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:01 DEBUG opendrift.models.basemodel:1253: Data needed for 5590 elements
14:09:01 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:01 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 16:00:00 (before)
2023-09-02 17:00:00 (after)
14:09:01 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 16:00:00) in space (linearNDFast)
14:09:01 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:01 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:01 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:01 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:01 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:01 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:01 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5384 (max)
14:09:01 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:01 DEBUG opendrift.models.basemodel:1527: 5590 active elements
14:09:01 DEBUG opendrift.models.basemodel:1538: 59.096183710051505 <- latitude -> 59.18864537739558
14:09:01 DEBUG opendrift.models.basemodel:1543: 10.897561833346314 <- longitude -> 11.044318330012345
14:09:01 DEBUG opendrift.models.basemodel:1548: -14.900864896225333 <- z -> 0.0
14:09:01 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:01 DEBUG opendrift.models.basemodel:836: Lifting 355 elements to seafloor.
14:09:01 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:01 INFO opendrift.models.basemodel:2882: 2023-09-02 16:46:21.121579 - step 161 of 216 - 5590 active elements (0 deactivated)
14:09:01 DEBUG opendrift.models.basemodel:2888: 4410 elements scheduled.
14:09:01 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:01 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:01 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:01 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:01 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:01 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:01 DEBUG opendrift.models.basemodel:1253: Data needed for 5590 elements
14:09:01 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:01 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:01 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:01 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:01 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:01 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:01 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:01 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:01 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:01 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:01 DEBUG opendrift.models.basemodel:1253: Data needed for 5590 elements
14:09:01 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:01 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 16:00:00 (before)
2023-09-02 17:00:00 (after)
14:09:02 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:02 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:02 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:02 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:02 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:02 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:02 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x24x5) for time after (2023-09-02 17:00:00)
14:09:02 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 16:00:00) in space (linearNDFast)
14:09:02 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:02 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 17:00:00) in space (linearNDFast)
14:09:02 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3508 elements, expanding data 1
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 2
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3508 elements, expanding data 1
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 2
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3619 elements, expanding data 1
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 266 elements, expanding data 2
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 3
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3619 elements, expanding data 1
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 266 elements, expanding data 2
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 3
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3619 elements, expanding data 1
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 266 elements, expanding data 2
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 3
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3619 elements, expanding data 1
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 266 elements, expanding data 2
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 3
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3619 elements, expanding data 1
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 266 elements, expanding data 2
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 3
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4651 elements, expanding data 1
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2168 elements, expanding data 2
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4651 elements, expanding data 1
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2168 elements, expanding data 2
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4651 elements, expanding data 1
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2168 elements, expanding data 2
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4651 elements, expanding data 1
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2168 elements, expanding data 2
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4651 elements, expanding data 1
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2168 elements, expanding data 2
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3508 elements, expanding data 1
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 2
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3508 elements, expanding data 1
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 2
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3508 elements, expanding data 1
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 2
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3508 elements, expanding data 1
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 2
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3508 elements, expanding data 1
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 2
14:09:02 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 16:00:00, weight 0.23) and
after (2023-09-02 17:00:00, weight 0.77) in time
14:09:02 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.10244873813026 and -58.95569222556777 degrees.
14:09:02 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.10244873813026 and -58.95569222556777 degrees.
14:09:02 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:02 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:02 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:02 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:02 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:02 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:02 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.898686 (min) 1.02871 (max)
14:09:02 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.05055 (min) 0.793674 (max)
14:09:02 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000129133 (min) 0.000687135 (max)
14:09:02 DEBUG opendrift.models.basemodel:1524: x_wind: -3.84074 (min) 12.6431 (max)
14:09:02 DEBUG opendrift.models.basemodel:1524: y_wind: -5.86823 (min) 7.54096 (max)
14:09:02 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:02 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:02 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:02 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:02 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:02 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:02 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:02 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5384 (max)
14:09:02 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:02 DEBUG opendrift.models.basemodel:1527: 5590 active elements
14:09:02 DEBUG opendrift.models.basemodel:1538: 59.096183710051505 <- latitude -> 59.18864537739558
14:09:02 DEBUG opendrift.models.basemodel:1543: 10.897561833346314 <- longitude -> 11.044318330012345
14:09:02 DEBUG opendrift.models.basemodel:1548: -14.900864896225333 <- z -> 0.0
14:09:02 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:02 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:02 DEBUG opendrift.models.physics_methods:1050: min: 0.107848, mean: 3.843589, max: 10.858611
14:09:02 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.107848, mean: 3.843589, max: 10.858611
14:09:02 DEBUG opendrift.models.basemodel:813: 834 elements hit coastline, moving back to water
14:09:02 DEBUG opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
14:09:02 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:02 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:02 DEBUG opendrift.models.physics_methods:828: Advecting 41 of 5590 elements above 0.100m with wind-sheared ocean current (0.003405 m/s - 0.166829 m/s)
14:09:02 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:02 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:02 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.1459026326461601
14:09:02 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:02 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:02 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:02 DEBUG opendrift.models.oceandrift:582: 641 elements penetrated seafloor, lifting up
14:09:02 DEBUG opendrift.models.oceandrift:600: 60 elements reached seafloor, set to bottom
14:09:02 DEBUG opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
14:09:02 DEBUG opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
14:09:02 DEBUG opendrift.models.oceandrift:582: 533 elements penetrated seafloor, lifting up
14:09:02 DEBUG opendrift.models.oceandrift:600: 69 elements reached seafloor, set to bottom
14:09:02 DEBUG opendrift.models.basemodel:836: Lifting 69 elements to seafloor.
14:09:02 DEBUG opendrift.models.sedimentdrift:112: Settling 69 elements at seafloor
14:09:02 DEBUG opendrift.models.oceandrift:582: 509 elements penetrated seafloor, lifting up
14:09:02 DEBUG opendrift.models.oceandrift:600: 54 elements reached seafloor, set to bottom
14:09:02 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
14:09:02 DEBUG opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
14:09:02 DEBUG opendrift.models.oceandrift:582: 460 elements penetrated seafloor, lifting up
14:09:02 DEBUG opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
14:09:02 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
14:09:02 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
14:09:02 DEBUG opendrift.models.oceandrift:582: 445 elements penetrated seafloor, lifting up
14:09:02 DEBUG opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
14:09:02 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
14:09:02 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
14:09:02 DEBUG opendrift.models.oceandrift:582: 447 elements penetrated seafloor, lifting up
14:09:02 DEBUG opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
14:09:02 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
14:09:02 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
14:09:02 DEBUG opendrift.models.oceandrift:582: 438 elements penetrated seafloor, lifting up
14:09:02 DEBUG opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
14:09:02 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
14:09:02 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
14:09:02 DEBUG opendrift.models.oceandrift:582: 477 elements penetrated seafloor, lifting up
14:09:02 DEBUG opendrift.models.oceandrift:600: 64 elements reached seafloor, set to bottom
14:09:02 DEBUG opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
14:09:02 DEBUG opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
14:09:02 DEBUG opendrift.models.oceandrift:582: 418 elements penetrated seafloor, lifting up
14:09:02 DEBUG opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
14:09:02 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
14:09:02 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
14:09:02 DEBUG opendrift.models.oceandrift:582: 413 elements penetrated seafloor, lifting up
14:09:02 DEBUG opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
14:09:02 DEBUG opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
14:09:02 DEBUG opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
14:09:02 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:02 DEBUG opendrift.models.basemodel:2945: 5590 active elements (0 deactivated)
14:09:02 DEBUG opendrift.models.basemodel:1658: to be seeded: 4410, already seeded 5590
14:09:02 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:09:02 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:02 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:02 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:02 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:02 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:02 DEBUG opendrift.models.basemodel:1253: Data needed for 5625 elements
14:09:02 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:02 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 16:00:00 (before)
2023-09-02 17:00:00 (after)
14:09:02 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 16:00:00) in space (linearNDFast)
14:09:02 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:02 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:02 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:02 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:02 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:02 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:02 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5457 (max)
14:09:02 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:02 DEBUG opendrift.models.basemodel:1527: 5625 active elements
14:09:02 DEBUG opendrift.models.basemodel:1538: 59.09624410256785 <- latitude -> 59.18901703673164
14:09:02 DEBUG opendrift.models.basemodel:1543: 10.896288535611207 <- longitude -> 11.04544163062293
14:09:02 DEBUG opendrift.models.basemodel:1548: -14.95291101955664 <- z -> 0.0
14:09:02 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:02 DEBUG opendrift.models.basemodel:836: Lifting 406 elements to seafloor.
14:09:02 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:02 INFO opendrift.models.basemodel:2882: 2023-09-02 16:56:21.121579 - step 162 of 216 - 5625 active elements (0 deactivated)
14:09:02 DEBUG opendrift.models.basemodel:2888: 4375 elements scheduled.
14:09:02 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:02 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:02 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:02 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:02 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:02 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:02 DEBUG opendrift.models.basemodel:1253: Data needed for 5625 elements
14:09:02 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:02 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:02 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:02 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:02 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:02 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:02 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:02 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:02 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:02 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:02 DEBUG opendrift.models.basemodel:1253: Data needed for 5625 elements
14:09:02 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:02 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 16:00:00 (before)
2023-09-02 17:00:00 (after)
14:09:02 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:02 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:02 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:02 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:02 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:02 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:02 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x24x5) for time after (2023-09-02 17:00:00)
14:09:02 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 16:00:00) in space (linearNDFast)
14:09:02 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:02 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 17:00:00) in space (linearNDFast)
14:09:02 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3545 elements, expanding data 1
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3545 elements, expanding data 1
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3656 elements, expanding data 1
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 2
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 3
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3656 elements, expanding data 1
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 2
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 3
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3656 elements, expanding data 1
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 2
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 3
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3656 elements, expanding data 1
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 2
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 3
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3656 elements, expanding data 1
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 2
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 3
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4669 elements, expanding data 1
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2203 elements, expanding data 2
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4669 elements, expanding data 1
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2203 elements, expanding data 2
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4669 elements, expanding data 1
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2203 elements, expanding data 2
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4669 elements, expanding data 1
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2203 elements, expanding data 2
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4669 elements, expanding data 1
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2203 elements, expanding data 2
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3545 elements, expanding data 1
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3545 elements, expanding data 1
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3545 elements, expanding data 1
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3545 elements, expanding data 1
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3545 elements, expanding data 1
14:09:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
14:09:02 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 16:00:00, weight 0.06) and
after (2023-09-02 17:00:00, weight 0.94) in time
14:09:03 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.103722033335785 and -58.954568920837495 degrees.
14:09:03 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.103722033335785 and -58.954568920837495 degrees.
14:09:03 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:03 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:03 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:03 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:03 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:03 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:03 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.750503 (min) 1.29455 (max)
14:09:03 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.17832 (min) 0.775569 (max)
14:09:03 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000112911 (min) 0.000834874 (max)
14:09:03 DEBUG opendrift.models.basemodel:1524: x_wind: -2.64201 (min) 11.4905 (max)
14:09:03 DEBUG opendrift.models.basemodel:1524: y_wind: -6.21771 (min) 8.25708 (max)
14:09:03 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:03 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:03 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:03 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:03 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:03 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:03 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:03 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5457 (max)
14:09:03 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:03 DEBUG opendrift.models.basemodel:1527: 5625 active elements
14:09:03 DEBUG opendrift.models.basemodel:1538: 59.09624410256785 <- latitude -> 59.18901703673164
14:09:03 DEBUG opendrift.models.basemodel:1543: 10.896288535611207 <- longitude -> 11.04544163062293
14:09:03 DEBUG opendrift.models.basemodel:1548: -14.95291101955664 <- z -> 0.0
14:09:03 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:03 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:03 DEBUG opendrift.models.physics_methods:1050: min: 0.038874, mean: 3.923858, max: 9.866788
14:09:03 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.038874, mean: 3.923858, max: 9.866788
14:09:03 DEBUG opendrift.models.basemodel:813: 873 elements hit coastline, moving back to water
14:09:03 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:09:03 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:03 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:03 DEBUG opendrift.models.physics_methods:828: Advecting 48 of 5625 elements above 0.100m with wind-sheared ocean current (0.010698 m/s - 0.130435 m/s)
14:09:03 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:03 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:03 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.12046716407878875
14:09:03 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:03 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:03 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:03 DEBUG opendrift.models.oceandrift:582: 680 elements penetrated seafloor, lifting up
14:09:03 DEBUG opendrift.models.oceandrift:600: 67 elements reached seafloor, set to bottom
14:09:03 DEBUG opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
14:09:03 DEBUG opendrift.models.sedimentdrift:112: Settling 67 elements at seafloor
14:09:03 DEBUG opendrift.models.oceandrift:582: 533 elements penetrated seafloor, lifting up
14:09:03 DEBUG opendrift.models.oceandrift:600: 59 elements reached seafloor, set to bottom
14:09:03 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
14:09:03 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
14:09:03 DEBUG opendrift.models.oceandrift:582: 513 elements penetrated seafloor, lifting up
14:09:03 DEBUG opendrift.models.oceandrift:600: 72 elements reached seafloor, set to bottom
14:09:03 DEBUG opendrift.models.basemodel:836: Lifting 72 elements to seafloor.
14:09:03 DEBUG opendrift.models.sedimentdrift:112: Settling 72 elements at seafloor
14:09:03 DEBUG opendrift.models.oceandrift:582: 488 elements penetrated seafloor, lifting up
14:09:03 DEBUG opendrift.models.oceandrift:600: 58 elements reached seafloor, set to bottom
14:09:03 DEBUG opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
14:09:03 DEBUG opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
14:09:03 DEBUG opendrift.models.oceandrift:582: 485 elements penetrated seafloor, lifting up
14:09:03 DEBUG opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
14:09:03 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
14:09:03 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
14:09:03 DEBUG opendrift.models.oceandrift:582: 498 elements penetrated seafloor, lifting up
14:09:03 DEBUG opendrift.models.oceandrift:600: 67 elements reached seafloor, set to bottom
14:09:03 DEBUG opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
14:09:03 DEBUG opendrift.models.sedimentdrift:112: Settling 67 elements at seafloor
14:09:03 DEBUG opendrift.models.oceandrift:582: 426 elements penetrated seafloor, lifting up
14:09:03 DEBUG opendrift.models.oceandrift:600: 62 elements reached seafloor, set to bottom
14:09:03 DEBUG opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
14:09:03 DEBUG opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
14:09:03 DEBUG opendrift.models.oceandrift:582: 453 elements penetrated seafloor, lifting up
14:09:03 DEBUG opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
14:09:03 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
14:09:03 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
14:09:03 DEBUG opendrift.models.oceandrift:582: 423 elements penetrated seafloor, lifting up
14:09:03 DEBUG opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
14:09:03 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
14:09:03 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
14:09:03 DEBUG opendrift.models.oceandrift:582: 406 elements penetrated seafloor, lifting up
14:09:03 DEBUG opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
14:09:03 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
14:09:03 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
14:09:03 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:03 DEBUG opendrift.models.basemodel:2945: 5625 active elements (0 deactivated)
14:09:03 DEBUG opendrift.models.basemodel:1658: to be seeded: 4375, already seeded 5625
14:09:03 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:09:03 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:03 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:03 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:03 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:03 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:03 DEBUG opendrift.models.basemodel:1253: Data needed for 5660 elements
14:09:03 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:03 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 17:00:00 (before)
2023-09-02 18:00:00 (after)
14:09:03 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 17:00:00) in space (linearNDFast)
14:09:03 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:03 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:03 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:03 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:03 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:03 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:03 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4648 (max)
14:09:03 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:03 DEBUG opendrift.models.basemodel:1527: 5660 active elements
14:09:03 DEBUG opendrift.models.basemodel:1538: 59.09394664866895 <- latitude -> 59.189474248057905
14:09:03 DEBUG opendrift.models.basemodel:1543: 10.89754291865208 <- longitude -> 11.04673130581601
14:09:03 DEBUG opendrift.models.basemodel:1548: -14.936436882019043 <- z -> 0.0
14:09:03 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:03 DEBUG opendrift.models.basemodel:836: Lifting 409 elements to seafloor.
14:09:03 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:03 INFO opendrift.models.basemodel:2882: 2023-09-02 17:06:21.121579 - step 163 of 216 - 5660 active elements (0 deactivated)
14:09:03 DEBUG opendrift.models.basemodel:2888: 4340 elements scheduled.
14:09:03 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:03 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:03 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:03 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:03 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:03 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:03 DEBUG opendrift.models.basemodel:1253: Data needed for 5660 elements
14:09:03 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:03 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:03 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:03 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:03 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:03 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:03 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:03 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:03 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:03 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:03 DEBUG opendrift.models.basemodel:1253: Data needed for 5660 elements
14:09:03 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:03 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 17:00:00 (before)
2023-09-02 18:00:00 (after)
14:09:04 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:04 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:04 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:04 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:04 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:04 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:04 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x24x5) for time after (2023-09-02 18:00:00)
14:09:04 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 17:00:00) in space (linearNDFast)
14:09:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:04 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 18:00:00) in space (linearNDFast)
14:09:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3558 elements, expanding data 1
14:09:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 57 elements, expanding data 2
14:09:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3558 elements, expanding data 1
14:09:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 57 elements, expanding data 2
14:09:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3667 elements, expanding data 1
14:09:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 278 elements, expanding data 2
14:09:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 3
14:09:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3667 elements, expanding data 1
14:09:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 278 elements, expanding data 2
14:09:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 3
14:09:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3667 elements, expanding data 1
14:09:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 278 elements, expanding data 2
14:09:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 3
14:09:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3667 elements, expanding data 1
14:09:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 278 elements, expanding data 2
14:09:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 3
14:09:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3667 elements, expanding data 1
14:09:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 278 elements, expanding data 2
14:09:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 3
14:09:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4694 elements, expanding data 1
14:09:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2224 elements, expanding data 2
14:09:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4694 elements, expanding data 1
14:09:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2224 elements, expanding data 2
14:09:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4694 elements, expanding data 1
14:09:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2224 elements, expanding data 2
14:09:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4694 elements, expanding data 1
14:09:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2224 elements, expanding data 2
14:09:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4694 elements, expanding data 1
14:09:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2224 elements, expanding data 2
14:09:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3558 elements, expanding data 1
14:09:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 57 elements, expanding data 2
14:09:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3558 elements, expanding data 1
14:09:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 57 elements, expanding data 2
14:09:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3558 elements, expanding data 1
14:09:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 57 elements, expanding data 2
14:09:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3558 elements, expanding data 1
14:09:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 57 elements, expanding data 2
14:09:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3558 elements, expanding data 1
14:09:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 57 elements, expanding data 2
14:09:04 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 17:00:00, weight 0.89) and
after (2023-09-02 18:00:00, weight 0.11) in time
14:09:04 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.10246765418415 and -58.95327925014344 degrees.
14:09:04 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.10246765418415 and -58.95327925014344 degrees.
14:09:04 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:04 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:04 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:04 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:04 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:04 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:04 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.720744 (min) 1.18781 (max)
14:09:04 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.00122 (min) 0.709433 (max)
14:09:04 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000130115 (min) 0.000747456 (max)
14:09:04 DEBUG opendrift.models.basemodel:1524: x_wind: -3.06045 (min) 10.9546 (max)
14:09:04 DEBUG opendrift.models.basemodel:1524: y_wind: -6.78952 (min) 8.89206 (max)
14:09:04 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:04 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:04 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:04 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:04 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:04 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:04 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:04 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4648 (max)
14:09:04 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:04 DEBUG opendrift.models.basemodel:1527: 5660 active elements
14:09:04 DEBUG opendrift.models.basemodel:1538: 59.09394664866895 <- latitude -> 59.189474248057905
14:09:04 DEBUG opendrift.models.basemodel:1543: 10.89754291865208 <- longitude -> 11.04673130581601
14:09:04 DEBUG opendrift.models.basemodel:1548: -14.859469413757324 <- z -> 0.0
14:09:04 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:04 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:04 DEBUG opendrift.models.physics_methods:1050: min: 0.068767, mean: 4.028453, max: 10.095341
14:09:04 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.068767, mean: 4.028453, max: 10.095341
14:09:04 DEBUG opendrift.models.basemodel:813: 892 elements hit coastline, moving back to water
14:09:04 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:09:04 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:04 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:04 DEBUG opendrift.models.physics_methods:828: Advecting 51 of 5660 elements above 0.100m with wind-sheared ocean current (0.002411 m/s - 0.158315 m/s)
14:09:04 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:04 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:04 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.12611256657846448
14:09:04 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:04 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:04 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:04 DEBUG opendrift.models.oceandrift:582: 660 elements penetrated seafloor, lifting up
14:09:04 DEBUG opendrift.models.oceandrift:600: 71 elements reached seafloor, set to bottom
14:09:04 DEBUG opendrift.models.basemodel:836: Lifting 71 elements to seafloor.
14:09:04 DEBUG opendrift.models.sedimentdrift:112: Settling 71 elements at seafloor
14:09:04 DEBUG opendrift.models.oceandrift:582: 529 elements penetrated seafloor, lifting up
14:09:04 DEBUG opendrift.models.oceandrift:600: 67 elements reached seafloor, set to bottom
14:09:04 DEBUG opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
14:09:04 DEBUG opendrift.models.sedimentdrift:112: Settling 67 elements at seafloor
14:09:04 DEBUG opendrift.models.oceandrift:582: 543 elements penetrated seafloor, lifting up
14:09:04 DEBUG opendrift.models.oceandrift:600: 64 elements reached seafloor, set to bottom
14:09:04 DEBUG opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
14:09:04 DEBUG opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
14:09:04 DEBUG opendrift.models.oceandrift:582: 511 elements penetrated seafloor, lifting up
14:09:04 DEBUG opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
14:09:04 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
14:09:04 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
14:09:04 DEBUG opendrift.models.oceandrift:582: 525 elements penetrated seafloor, lifting up
14:09:04 DEBUG opendrift.models.oceandrift:600: 54 elements reached seafloor, set to bottom
14:09:04 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
14:09:04 DEBUG opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
14:09:04 DEBUG opendrift.models.oceandrift:582: 493 elements penetrated seafloor, lifting up
14:09:04 DEBUG opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
14:09:04 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
14:09:04 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
14:09:04 DEBUG opendrift.models.oceandrift:582: 465 elements penetrated seafloor, lifting up
14:09:04 DEBUG opendrift.models.oceandrift:600: 40 elements reached seafloor, set to bottom
14:09:04 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
14:09:04 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
14:09:04 DEBUG opendrift.models.oceandrift:582: 459 elements penetrated seafloor, lifting up
14:09:04 DEBUG opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
14:09:04 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
14:09:04 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
14:09:04 DEBUG opendrift.models.oceandrift:582: 437 elements penetrated seafloor, lifting up
14:09:04 DEBUG opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
14:09:04 DEBUG opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
14:09:04 DEBUG opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
14:09:04 DEBUG opendrift.models.oceandrift:582: 473 elements penetrated seafloor, lifting up
14:09:04 DEBUG opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
14:09:04 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
14:09:04 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
14:09:04 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:04 DEBUG opendrift.models.basemodel:2945: 5660 active elements (0 deactivated)
14:09:04 DEBUG opendrift.models.basemodel:1658: to be seeded: 4340, already seeded 5660
14:09:04 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:09:04 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:04 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:04 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:04 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:04 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:04 DEBUG opendrift.models.basemodel:1253: Data needed for 5694 elements
14:09:04 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:04 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 17:00:00 (before)
2023-09-02 18:00:00 (after)
14:09:04 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 17:00:00) in space (linearNDFast)
14:09:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:04 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:04 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:04 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:04 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:04 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:04 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5708 (max)
14:09:04 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:04 DEBUG opendrift.models.basemodel:1527: 5694 active elements
14:09:04 DEBUG opendrift.models.basemodel:1538: 59.09606489203124 <- latitude -> 59.1900372600738
14:09:04 DEBUG opendrift.models.basemodel:1543: 10.89797119984377 <- longitude -> 11.047084694375851
14:09:04 DEBUG opendrift.models.basemodel:1548: -15.071275674362575 <- z -> 0.0
14:09:04 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:04 DEBUG opendrift.models.basemodel:836: Lifting 396 elements to seafloor.
14:09:04 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:04 INFO opendrift.models.basemodel:2882: 2023-09-02 17:16:21.121579 - step 164 of 216 - 5694 active elements (0 deactivated)
14:09:04 DEBUG opendrift.models.basemodel:2888: 4306 elements scheduled.
14:09:04 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:04 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:04 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:04 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:04 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:04 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:04 DEBUG opendrift.models.basemodel:1253: Data needed for 5694 elements
14:09:04 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:04 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:04 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:04 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:04 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:04 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:04 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:04 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:04 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:04 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:04 DEBUG opendrift.models.basemodel:1253: Data needed for 5694 elements
14:09:04 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:04 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 17:00:00 (before)
2023-09-02 18:00:00 (after)
14:09:05 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:05 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:05 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:05 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:05 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:05 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:05 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x24x6) for time after (2023-09-02 18:00:00)
14:09:05 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 17:00:00) in space (linearNDFast)
14:09:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:05 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 18:00:00) in space (linearNDFast)
14:09:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3560 elements, expanding data 1
14:09:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 2
14:09:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3560 elements, expanding data 1
14:09:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 2
14:09:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3671 elements, expanding data 1
14:09:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 280 elements, expanding data 2
14:09:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 3
14:09:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3671 elements, expanding data 1
14:09:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 280 elements, expanding data 2
14:09:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 3
14:09:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3671 elements, expanding data 1
14:09:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 280 elements, expanding data 2
14:09:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 3
14:09:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3671 elements, expanding data 1
14:09:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 280 elements, expanding data 2
14:09:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 3
14:09:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3671 elements, expanding data 1
14:09:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 280 elements, expanding data 2
14:09:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 3
14:09:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3671 elements, expanding data 1
14:09:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 280 elements, expanding data 2
14:09:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 3
14:09:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4706 elements, expanding data 1
14:09:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2224 elements, expanding data 2
14:09:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4706 elements, expanding data 1
14:09:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2224 elements, expanding data 2
14:09:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4706 elements, expanding data 1
14:09:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2224 elements, expanding data 2
14:09:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4706 elements, expanding data 1
14:09:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2224 elements, expanding data 2
14:09:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4706 elements, expanding data 1
14:09:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2224 elements, expanding data 2
14:09:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4706 elements, expanding data 1
14:09:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2224 elements, expanding data 2
14:09:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3560 elements, expanding data 1
14:09:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 2
14:09:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3560 elements, expanding data 1
14:09:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 2
14:09:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3560 elements, expanding data 1
14:09:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 2
14:09:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3560 elements, expanding data 1
14:09:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 2
14:09:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3560 elements, expanding data 1
14:09:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 2
14:09:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3560 elements, expanding data 1
14:09:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 2
14:09:05 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 17:00:00, weight 0.73) and
after (2023-09-02 18:00:00, weight 0.27) in time
14:09:05 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.102039371115005 and -58.95292585759764 degrees.
14:09:05 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.102039371115005 and -58.95292585759764 degrees.
14:09:05 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:05 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:05 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:05 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:05 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:05 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:05 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.760757 (min) 1.14699 (max)
14:09:05 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.05561 (min) 0.903324 (max)
14:09:05 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000137552 (min) 0.000683054 (max)
14:09:05 DEBUG opendrift.models.basemodel:1524: x_wind: -3.43676 (min) 10.6534 (max)
14:09:05 DEBUG opendrift.models.basemodel:1524: y_wind: -6.37629 (min) 9.61784 (max)
14:09:05 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:05 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:05 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:05 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:05 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:05 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:05 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:05 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5708 (max)
14:09:05 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:05 DEBUG opendrift.models.basemodel:1527: 5694 active elements
14:09:05 DEBUG opendrift.models.basemodel:1538: 59.09606489203124 <- latitude -> 59.1900372600738
14:09:05 DEBUG opendrift.models.basemodel:1543: 10.89797119984377 <- longitude -> 11.047084694375851
14:09:05 DEBUG opendrift.models.basemodel:1548: -15.071275674362575 <- z -> 0.0
14:09:05 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:05 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:05 DEBUG opendrift.models.physics_methods:1050: min: 0.120685, mean: 4.126957, max: 9.419363
14:09:05 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.120685, mean: 4.126957, max: 9.419363
14:09:05 DEBUG opendrift.models.basemodel:813: 897 elements hit coastline, moving back to water
14:09:05 DEBUG opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
14:09:05 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:05 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:05 DEBUG opendrift.models.physics_methods:828: Advecting 39 of 5694 elements above 0.100m with wind-sheared ocean current (0.002589 m/s - 0.210201 m/s)
14:09:05 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:05 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:05 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10978967141349792
14:09:05 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:05 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:05 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:05 DEBUG opendrift.models.oceandrift:582: 681 elements penetrated seafloor, lifting up
14:09:05 DEBUG opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
14:09:05 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
14:09:05 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
14:09:05 DEBUG opendrift.models.oceandrift:582: 537 elements penetrated seafloor, lifting up
14:09:05 DEBUG opendrift.models.oceandrift:600: 64 elements reached seafloor, set to bottom
14:09:05 DEBUG opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
14:09:05 DEBUG opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
14:09:05 DEBUG opendrift.models.oceandrift:582: 546 elements penetrated seafloor, lifting up
14:09:05 DEBUG opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
14:09:05 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
14:09:05 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
14:09:05 DEBUG opendrift.models.oceandrift:582: 560 elements penetrated seafloor, lifting up
14:09:05 DEBUG opendrift.models.oceandrift:600: 40 elements reached seafloor, set to bottom
14:09:05 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
14:09:05 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
14:09:05 DEBUG opendrift.models.oceandrift:582: 529 elements penetrated seafloor, lifting up
14:09:05 DEBUG opendrift.models.oceandrift:600: 52 elements reached seafloor, set to bottom
14:09:05 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
14:09:05 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
14:09:05 DEBUG opendrift.models.oceandrift:582: 533 elements penetrated seafloor, lifting up
14:09:05 DEBUG opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
14:09:05 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
14:09:05 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
14:09:05 DEBUG opendrift.models.oceandrift:582: 474 elements penetrated seafloor, lifting up
14:09:05 DEBUG opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
14:09:05 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
14:09:05 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
14:09:05 DEBUG opendrift.models.oceandrift:582: 465 elements penetrated seafloor, lifting up
14:09:05 DEBUG opendrift.models.oceandrift:600: 59 elements reached seafloor, set to bottom
14:09:05 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
14:09:05 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
14:09:05 DEBUG opendrift.models.oceandrift:582: 442 elements penetrated seafloor, lifting up
14:09:05 DEBUG opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
14:09:05 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
14:09:05 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
14:09:05 DEBUG opendrift.models.oceandrift:582: 454 elements penetrated seafloor, lifting up
14:09:05 DEBUG opendrift.models.oceandrift:600: 40 elements reached seafloor, set to bottom
14:09:05 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
14:09:05 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
14:09:05 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:05 DEBUG opendrift.models.basemodel:2945: 5694 active elements (0 deactivated)
14:09:05 DEBUG opendrift.models.basemodel:1658: to be seeded: 4306, already seeded 5694
14:09:05 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:09:05 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:05 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:05 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:05 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:05 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:05 DEBUG opendrift.models.basemodel:1253: Data needed for 5729 elements
14:09:05 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:05 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 17:00:00 (before)
2023-09-02 18:00:00 (after)
14:09:05 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 17:00:00) in space (linearNDFast)
14:09:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:05 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:05 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:05 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:05 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:05 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:05 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5856 (max)
14:09:05 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:05 DEBUG opendrift.models.basemodel:1527: 5729 active elements
14:09:05 DEBUG opendrift.models.basemodel:1538: 59.09583242917853 <- latitude -> 59.190461607554006
14:09:05 DEBUG opendrift.models.basemodel:1543: 10.89530298637323 <- longitude -> 11.042957870469966
14:09:05 DEBUG opendrift.models.basemodel:1548: -14.753715515136719 <- z -> 0.0
14:09:05 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:05 DEBUG opendrift.models.basemodel:836: Lifting 362 elements to seafloor.
14:09:05 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:05 INFO opendrift.models.basemodel:2882: 2023-09-02 17:26:21.121579 - step 165 of 216 - 5729 active elements (0 deactivated)
14:09:05 DEBUG opendrift.models.basemodel:2888: 4271 elements scheduled.
14:09:05 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:05 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:05 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:05 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:05 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:05 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:05 DEBUG opendrift.models.basemodel:1253: Data needed for 5729 elements
14:09:05 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:05 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:05 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:05 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:05 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:05 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:05 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:05 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:05 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:05 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:05 DEBUG opendrift.models.basemodel:1253: Data needed for 5729 elements
14:09:05 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:05 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 17:00:00 (before)
2023-09-02 18:00:00 (after)
14:09:06 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:06 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:06 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:06 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:06 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:06 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:06 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x24x5) for time after (2023-09-02 18:00:00)
14:09:06 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 17:00:00) in space (linearNDFast)
14:09:06 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:06 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 18:00:00) in space (linearNDFast)
14:09:06 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3564 elements, expanding data 1
14:09:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
14:09:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3564 elements, expanding data 1
14:09:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
14:09:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3675 elements, expanding data 1
14:09:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 275 elements, expanding data 2
14:09:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 3
14:09:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3675 elements, expanding data 1
14:09:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 275 elements, expanding data 2
14:09:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 3
14:09:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3675 elements, expanding data 1
14:09:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 275 elements, expanding data 2
14:09:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 3
14:09:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3675 elements, expanding data 1
14:09:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 275 elements, expanding data 2
14:09:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 3
14:09:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3675 elements, expanding data 1
14:09:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 275 elements, expanding data 2
14:09:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 3
14:09:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4766 elements, expanding data 1
14:09:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2242 elements, expanding data 2
14:09:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4766 elements, expanding data 1
14:09:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2242 elements, expanding data 2
14:09:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4766 elements, expanding data 1
14:09:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2242 elements, expanding data 2
14:09:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4766 elements, expanding data 1
14:09:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2242 elements, expanding data 2
14:09:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4766 elements, expanding data 1
14:09:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2242 elements, expanding data 2
14:09:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3564 elements, expanding data 1
14:09:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
14:09:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3564 elements, expanding data 1
14:09:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
14:09:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3564 elements, expanding data 1
14:09:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
14:09:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3564 elements, expanding data 1
14:09:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
14:09:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3564 elements, expanding data 1
14:09:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
14:09:06 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 17:00:00, weight 0.56) and
after (2023-09-02 18:00:00, weight 0.44) in time
14:09:06 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.104707587731966 and -58.95705267595234 degrees.
14:09:06 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.104707587731966 and -58.95705267595234 degrees.
14:09:06 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:06 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:06 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:06 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:06 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:06 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:06 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.826499 (min) 1.07651 (max)
14:09:06 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.08254 (min) 0.695406 (max)
14:09:06 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000128914 (min) 0.000859725 (max)
14:09:06 DEBUG opendrift.models.basemodel:1524: x_wind: -4.08451 (min) 13.453 (max)
14:09:06 DEBUG opendrift.models.basemodel:1524: y_wind: -7.32024 (min) 8.7187 (max)
14:09:06 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:06 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:06 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:06 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:06 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:06 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:06 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:06 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5856 (max)
14:09:06 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:06 DEBUG opendrift.models.basemodel:1527: 5729 active elements
14:09:06 DEBUG opendrift.models.basemodel:1538: 59.09583242917853 <- latitude -> 59.190461607554006
14:09:06 DEBUG opendrift.models.basemodel:1543: 10.89530298637323 <- longitude -> 11.042957870469966
14:09:06 DEBUG opendrift.models.basemodel:1548: -14.747020721435547 <- z -> 0.0
14:09:06 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:06 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:06 DEBUG opendrift.models.physics_methods:1050: min: 0.057342, mean: 4.253782, max: 11.718280
14:09:06 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.057342, mean: 4.253782, max: 11.718280
14:09:06 DEBUG opendrift.models.basemodel:813: 879 elements hit coastline, moving back to water
14:09:06 DEBUG opendrift.models.basemodel:836: Lifting 135 elements to seafloor.
14:09:06 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:06 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:06 DEBUG opendrift.models.physics_methods:828: Advecting 45 of 5729 elements above 0.100m with wind-sheared ocean current (0.000564 m/s - 0.183553 m/s)
14:09:06 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:06 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:06 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.16991843270118712
14:09:06 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:06 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:06 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:06 DEBUG opendrift.models.oceandrift:582: 670 elements penetrated seafloor, lifting up
14:09:06 DEBUG opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
14:09:06 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
14:09:06 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
14:09:06 DEBUG opendrift.models.oceandrift:582: 574 elements penetrated seafloor, lifting up
14:09:06 DEBUG opendrift.models.oceandrift:600: 62 elements reached seafloor, set to bottom
14:09:06 DEBUG opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
14:09:06 DEBUG opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
14:09:06 DEBUG opendrift.models.oceandrift:582: 550 elements penetrated seafloor, lifting up
14:09:06 DEBUG opendrift.models.oceandrift:600: 54 elements reached seafloor, set to bottom
14:09:06 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
14:09:06 DEBUG opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
14:09:06 DEBUG opendrift.models.oceandrift:582: 561 elements penetrated seafloor, lifting up
14:09:06 DEBUG opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
14:09:06 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
14:09:06 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
14:09:06 DEBUG opendrift.models.oceandrift:582: 506 elements penetrated seafloor, lifting up
14:09:06 DEBUG opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
14:09:06 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
14:09:06 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
14:09:06 DEBUG opendrift.models.oceandrift:582: 514 elements penetrated seafloor, lifting up
14:09:06 DEBUG opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
14:09:06 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
14:09:06 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
14:09:06 DEBUG opendrift.models.oceandrift:582: 530 elements penetrated seafloor, lifting up
14:09:06 DEBUG opendrift.models.oceandrift:600: 62 elements reached seafloor, set to bottom
14:09:06 DEBUG opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
14:09:06 DEBUG opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
14:09:06 DEBUG opendrift.models.oceandrift:582: 494 elements penetrated seafloor, lifting up
14:09:06 DEBUG opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
14:09:06 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
14:09:06 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
14:09:06 DEBUG opendrift.models.oceandrift:582: 497 elements penetrated seafloor, lifting up
14:09:06 DEBUG opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
14:09:06 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
14:09:06 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
14:09:06 DEBUG opendrift.models.oceandrift:582: 452 elements penetrated seafloor, lifting up
14:09:06 DEBUG opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
14:09:06 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
14:09:06 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
14:09:06 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:06 DEBUG opendrift.models.basemodel:2945: 5729 active elements (0 deactivated)
14:09:06 DEBUG opendrift.models.basemodel:1658: to be seeded: 4271, already seeded 5729
14:09:06 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:09:06 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:06 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:06 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:06 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:06 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:06 DEBUG opendrift.models.basemodel:1253: Data needed for 5764 elements
14:09:06 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:06 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 17:00:00 (before)
2023-09-02 18:00:00 (after)
14:09:06 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 17:00:00) in space (linearNDFast)
14:09:06 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:06 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:06 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:06 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:06 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:06 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:06 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5149 (max)
14:09:06 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:06 DEBUG opendrift.models.basemodel:1527: 5764 active elements
14:09:06 DEBUG opendrift.models.basemodel:1538: 59.09716032178131 <- latitude -> 59.18862909717889
14:09:06 DEBUG opendrift.models.basemodel:1543: 10.893535229197873 <- longitude -> 11.045067782924226
14:09:06 DEBUG opendrift.models.basemodel:1548: -14.770927169732449 <- z -> 0.0
14:09:06 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:06 DEBUG opendrift.models.basemodel:836: Lifting 398 elements to seafloor.
14:09:06 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:06 INFO opendrift.models.basemodel:2882: 2023-09-02 17:36:21.121579 - step 166 of 216 - 5764 active elements (0 deactivated)
14:09:06 DEBUG opendrift.models.basemodel:2888: 4236 elements scheduled.
14:09:06 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:06 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:06 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:06 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:06 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:06 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:06 DEBUG opendrift.models.basemodel:1253: Data needed for 5764 elements
14:09:06 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:06 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:06 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:06 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:06 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:06 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:06 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:06 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:06 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:06 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:06 DEBUG opendrift.models.basemodel:1253: Data needed for 5764 elements
14:09:06 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:06 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 17:00:00 (before)
2023-09-02 18:00:00 (after)
14:09:07 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:07 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:07 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:07 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:07 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:07 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:07 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x24x5) for time after (2023-09-02 18:00:00)
14:09:07 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 17:00:00) in space (linearNDFast)
14:09:07 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:07 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 18:00:00) in space (linearNDFast)
14:09:07 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3580 elements, expanding data 1
14:09:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 2
14:09:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3580 elements, expanding data 1
14:09:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 2
14:09:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3691 elements, expanding data 1
14:09:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 289 elements, expanding data 2
14:09:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 3
14:09:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3691 elements, expanding data 1
14:09:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 289 elements, expanding data 2
14:09:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 3
14:09:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3691 elements, expanding data 1
14:09:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 289 elements, expanding data 2
14:09:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 3
14:09:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3691 elements, expanding data 1
14:09:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 289 elements, expanding data 2
14:09:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 3
14:09:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3691 elements, expanding data 1
14:09:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 289 elements, expanding data 2
14:09:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 3
14:09:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4806 elements, expanding data 1
14:09:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2248 elements, expanding data 2
14:09:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4806 elements, expanding data 1
14:09:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2248 elements, expanding data 2
14:09:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4806 elements, expanding data 1
14:09:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2248 elements, expanding data 2
14:09:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4806 elements, expanding data 1
14:09:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2248 elements, expanding data 2
14:09:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4806 elements, expanding data 1
14:09:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2248 elements, expanding data 2
14:09:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3580 elements, expanding data 1
14:09:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 2
14:09:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3580 elements, expanding data 1
14:09:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 2
14:09:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3580 elements, expanding data 1
14:09:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 2
14:09:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3580 elements, expanding data 1
14:09:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 2
14:09:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3580 elements, expanding data 1
14:09:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 2
14:09:07 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 17:00:00, weight 0.39) and
after (2023-09-02 18:00:00, weight 0.61) in time
14:09:07 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.10647534323709 and -58.954942771147046 degrees.
14:09:07 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.10647534323709 and -58.954942771147046 degrees.
14:09:07 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:07 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:07 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:07 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:07 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:07 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:07 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.809451 (min) 1.26099 (max)
14:09:07 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.942882 (min) 0.761204 (max)
14:09:07 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -9.78382e-05 (min) 0.000785565 (max)
14:09:07 DEBUG opendrift.models.basemodel:1524: x_wind: -2.74933 (min) 11.3649 (max)
14:09:07 DEBUG opendrift.models.basemodel:1524: y_wind: -6.61381 (min) 8.26541 (max)
14:09:07 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:07 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:07 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:07 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:07 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:07 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:07 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:07 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5149 (max)
14:09:07 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:07 DEBUG opendrift.models.basemodel:1527: 5764 active elements
14:09:07 DEBUG opendrift.models.basemodel:1538: 59.09716032178131 <- latitude -> 59.18862909717889
14:09:07 DEBUG opendrift.models.basemodel:1543: 10.893535229197873 <- longitude -> 11.045067782924226
14:09:07 DEBUG opendrift.models.basemodel:1548: -14.770927169732449 <- z -> 0.0
14:09:07 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:07 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:07 DEBUG opendrift.models.physics_methods:1050: min: 0.088667, mean: 4.383500, max: 9.729691
14:09:07 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.088667, mean: 4.383500, max: 9.729691
14:09:07 DEBUG opendrift.models.basemodel:813: 880 elements hit coastline, moving back to water
14:09:07 DEBUG opendrift.models.basemodel:836: Lifting 130 elements to seafloor.
14:09:07 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:07 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:07 DEBUG opendrift.models.physics_methods:828: Advecting 46 of 5764 elements above 0.100m with wind-sheared ocean current (0.002199 m/s - 0.205422 m/s)
14:09:07 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:07 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:07 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.11714277217443465
14:09:07 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:07 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:07 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:07 DEBUG opendrift.models.oceandrift:582: 737 elements penetrated seafloor, lifting up
14:09:07 DEBUG opendrift.models.oceandrift:600: 52 elements reached seafloor, set to bottom
14:09:07 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
14:09:07 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
14:09:07 DEBUG opendrift.models.oceandrift:582: 570 elements penetrated seafloor, lifting up
14:09:07 DEBUG opendrift.models.oceandrift:600: 68 elements reached seafloor, set to bottom
14:09:07 DEBUG opendrift.models.basemodel:836: Lifting 68 elements to seafloor.
14:09:07 DEBUG opendrift.models.sedimentdrift:112: Settling 68 elements at seafloor
14:09:07 DEBUG opendrift.models.oceandrift:582: 521 elements penetrated seafloor, lifting up
14:09:07 DEBUG opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
14:09:07 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
14:09:07 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
14:09:07 DEBUG opendrift.models.oceandrift:582: 528 elements penetrated seafloor, lifting up
14:09:07 DEBUG opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
14:09:07 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
14:09:07 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
14:09:07 DEBUG opendrift.models.oceandrift:582: 512 elements penetrated seafloor, lifting up
14:09:07 DEBUG opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
14:09:07 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
14:09:07 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
14:09:07 DEBUG opendrift.models.oceandrift:582: 529 elements penetrated seafloor, lifting up
14:09:07 DEBUG opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
14:09:07 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
14:09:07 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
14:09:07 DEBUG opendrift.models.oceandrift:582: 499 elements penetrated seafloor, lifting up
14:09:07 DEBUG opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
14:09:07 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
14:09:07 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
14:09:07 DEBUG opendrift.models.oceandrift:582: 512 elements penetrated seafloor, lifting up
14:09:07 DEBUG opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
14:09:07 DEBUG opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
14:09:07 DEBUG opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
14:09:07 DEBUG opendrift.models.oceandrift:582: 495 elements penetrated seafloor, lifting up
14:09:07 DEBUG opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
14:09:07 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
14:09:07 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
14:09:07 DEBUG opendrift.models.oceandrift:582: 493 elements penetrated seafloor, lifting up
14:09:07 DEBUG opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
14:09:07 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
14:09:07 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
14:09:07 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:07 DEBUG opendrift.models.basemodel:2945: 5764 active elements (0 deactivated)
14:09:07 DEBUG opendrift.models.basemodel:1658: to be seeded: 4236, already seeded 5764
14:09:07 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:09:07 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:07 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:07 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:07 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:07 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:07 DEBUG opendrift.models.basemodel:1253: Data needed for 5799 elements
14:09:07 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:07 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 17:00:00 (before)
2023-09-02 18:00:00 (after)
14:09:07 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 17:00:00) in space (linearNDFast)
14:09:07 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:07 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:07 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:07 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:07 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:07 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:07 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4816 (max)
14:09:07 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:07 DEBUG opendrift.models.basemodel:1527: 5799 active elements
14:09:07 DEBUG opendrift.models.basemodel:1538: 59.09791347521977 <- latitude -> 59.18989613898829
14:09:07 DEBUG opendrift.models.basemodel:1543: 10.894476127111531 <- longitude -> 11.042471510291893
14:09:07 DEBUG opendrift.models.basemodel:1548: -15.51485824584961 <- z -> 0.0
14:09:07 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:07 DEBUG opendrift.models.basemodel:836: Lifting 365 elements to seafloor.
14:09:07 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:07 INFO opendrift.models.basemodel:2882: 2023-09-02 17:46:21.121579 - step 167 of 216 - 5799 active elements (0 deactivated)
14:09:07 DEBUG opendrift.models.basemodel:2888: 4201 elements scheduled.
14:09:07 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:07 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:07 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:07 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:07 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:07 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:07 DEBUG opendrift.models.basemodel:1253: Data needed for 5799 elements
14:09:07 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:07 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:07 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:07 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:07 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:07 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:07 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:07 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:07 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:07 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:07 DEBUG opendrift.models.basemodel:1253: Data needed for 5799 elements
14:09:07 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:07 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 17:00:00 (before)
2023-09-02 18:00:00 (after)
14:09:08 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:08 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:08 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:08 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:08 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:08 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:08 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x24x6) for time after (2023-09-02 18:00:00)
14:09:08 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 17:00:00) in space (linearNDFast)
14:09:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:08 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 18:00:00) in space (linearNDFast)
14:09:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3632 elements, expanding data 1
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 60 elements, expanding data 2
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3632 elements, expanding data 1
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 60 elements, expanding data 2
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3740 elements, expanding data 1
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 291 elements, expanding data 2
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 3
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3740 elements, expanding data 1
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 291 elements, expanding data 2
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 3
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3740 elements, expanding data 1
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 291 elements, expanding data 2
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 3
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3740 elements, expanding data 1
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 291 elements, expanding data 2
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 3
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3740 elements, expanding data 1
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 291 elements, expanding data 2
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 3
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3740 elements, expanding data 1
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 291 elements, expanding data 2
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 3
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4815 elements, expanding data 1
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2305 elements, expanding data 2
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4815 elements, expanding data 1
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2305 elements, expanding data 2
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4815 elements, expanding data 1
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2305 elements, expanding data 2
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4815 elements, expanding data 1
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2305 elements, expanding data 2
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4815 elements, expanding data 1
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2305 elements, expanding data 2
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4815 elements, expanding data 1
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2305 elements, expanding data 2
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3632 elements, expanding data 1
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 60 elements, expanding data 2
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3632 elements, expanding data 1
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 60 elements, expanding data 2
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3632 elements, expanding data 1
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 60 elements, expanding data 2
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3632 elements, expanding data 1
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 60 elements, expanding data 2
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3632 elements, expanding data 1
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 60 elements, expanding data 2
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3632 elements, expanding data 1
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 60 elements, expanding data 2
14:09:08 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 17:00:00, weight 0.23) and
after (2023-09-02 18:00:00, weight 0.77) in time
14:09:08 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.10553444872377 and -58.957539057155174 degrees.
14:09:08 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.10553444872377 and -58.957539057155174 degrees.
14:09:08 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:08 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:08 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:08 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:08 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:08 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:08 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.844857 (min) 1.15996 (max)
14:09:08 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.973688 (min) 0.843788 (max)
14:09:08 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -9.01769e-05 (min) 0.000865256 (max)
14:09:08 DEBUG opendrift.models.basemodel:1524: x_wind: -2.13048 (min) 12.7811 (max)
14:09:08 DEBUG opendrift.models.basemodel:1524: y_wind: -6.43956 (min) 7.92234 (max)
14:09:08 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:08 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:08 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:08 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:08 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:08 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:08 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:08 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4816 (max)
14:09:08 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:08 DEBUG opendrift.models.basemodel:1527: 5799 active elements
14:09:08 DEBUG opendrift.models.basemodel:1538: 59.09791347521977 <- latitude -> 59.18989613898829
14:09:08 DEBUG opendrift.models.basemodel:1543: 10.894476127111531 <- longitude -> 11.042471510291893
14:09:08 DEBUG opendrift.models.basemodel:1548: -15.481581687927246 <- z -> 0.0
14:09:08 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:08 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:08 DEBUG opendrift.models.physics_methods:1050: min: 0.068184, mean: 4.558633, max: 10.926124
14:09:08 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.068184, mean: 4.558633, max: 10.926124
14:09:08 DEBUG opendrift.models.basemodel:813: 954 elements hit coastline, moving back to water
14:09:08 DEBUG opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
14:09:08 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:08 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:08 DEBUG opendrift.models.physics_methods:828: Advecting 41 of 5799 elements above 0.100m with wind-sheared ocean current (0.003632 m/s - 0.192038 m/s)
14:09:08 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:08 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:08 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.1477224954896736
14:09:08 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:08 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:08 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:08 DEBUG opendrift.models.oceandrift:582: 772 elements penetrated seafloor, lifting up
14:09:08 DEBUG opendrift.models.oceandrift:600: 68 elements reached seafloor, set to bottom
14:09:08 DEBUG opendrift.models.basemodel:836: Lifting 68 elements to seafloor.
14:09:08 DEBUG opendrift.models.sedimentdrift:112: Settling 68 elements at seafloor
14:09:08 DEBUG opendrift.models.oceandrift:582: 653 elements penetrated seafloor, lifting up
14:09:08 DEBUG opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
14:09:08 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
14:09:08 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
14:09:08 DEBUG opendrift.models.oceandrift:582: 607 elements penetrated seafloor, lifting up
14:09:08 DEBUG opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
14:09:08 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
14:09:08 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
14:09:08 DEBUG opendrift.models.oceandrift:582: 566 elements penetrated seafloor, lifting up
14:09:08 DEBUG opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
14:09:08 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
14:09:08 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
14:09:08 DEBUG opendrift.models.oceandrift:582: 573 elements penetrated seafloor, lifting up
14:09:08 DEBUG opendrift.models.oceandrift:600: 59 elements reached seafloor, set to bottom
14:09:08 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
14:09:08 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
14:09:08 DEBUG opendrift.models.oceandrift:582: 512 elements penetrated seafloor, lifting up
14:09:08 DEBUG opendrift.models.oceandrift:600: 54 elements reached seafloor, set to bottom
14:09:08 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
14:09:08 DEBUG opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
14:09:08 DEBUG opendrift.models.oceandrift:582: 509 elements penetrated seafloor, lifting up
14:09:08 DEBUG opendrift.models.oceandrift:600: 44 elements reached seafloor, set to bottom
14:09:08 DEBUG opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
14:09:08 DEBUG opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
14:09:08 DEBUG opendrift.models.oceandrift:582: 516 elements penetrated seafloor, lifting up
14:09:08 DEBUG opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
14:09:08 DEBUG opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
14:09:08 DEBUG opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
14:09:08 DEBUG opendrift.models.oceandrift:582: 496 elements penetrated seafloor, lifting up
14:09:08 DEBUG opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
14:09:08 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
14:09:08 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
14:09:08 DEBUG opendrift.models.oceandrift:582: 513 elements penetrated seafloor, lifting up
14:09:08 DEBUG opendrift.models.oceandrift:600: 52 elements reached seafloor, set to bottom
14:09:08 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
14:09:08 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
14:09:08 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:08 DEBUG opendrift.models.basemodel:2945: 5799 active elements (0 deactivated)
14:09:08 DEBUG opendrift.models.basemodel:1658: to be seeded: 4201, already seeded 5799
14:09:08 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:09:08 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:08 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:08 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:08 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:08 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:08 DEBUG opendrift.models.basemodel:1253: Data needed for 5833 elements
14:09:08 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:08 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 17:00:00 (before)
2023-09-02 18:00:00 (after)
14:09:08 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 17:00:00) in space (linearNDFast)
14:09:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:09:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:09:08 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:08 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:08 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:08 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:08 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:08 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4816 (max)
14:09:08 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:08 DEBUG opendrift.models.basemodel:1527: 5833 active elements
14:09:08 DEBUG opendrift.models.basemodel:1538: 59.09601456610909 <- latitude -> 59.189817956811
14:09:08 DEBUG opendrift.models.basemodel:1543: 10.89460458508147 <- longitude -> 11.041854607039296
14:09:08 DEBUG opendrift.models.basemodel:1548: -15.471581687927246 <- z -> 0.0
14:09:08 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:08 DEBUG opendrift.models.basemodel:836: Lifting 372 elements to seafloor.
14:09:08 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:08 INFO opendrift.models.basemodel:2882: 2023-09-02 17:56:21.121579 - step 168 of 216 - 5833 active elements (0 deactivated)
14:09:08 DEBUG opendrift.models.basemodel:2888: 4167 elements scheduled.
14:09:08 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:08 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:08 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:08 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:08 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:08 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:08 DEBUG opendrift.models.basemodel:1253: Data needed for 5833 elements
14:09:08 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:08 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:08 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:08 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:08 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:08 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:08 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:08 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:08 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:08 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:08 DEBUG opendrift.models.basemodel:1253: Data needed for 5833 elements
14:09:08 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:08 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 17:00:00 (before)
2023-09-02 18:00:00 (after)
14:09:09 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:09 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:09 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:09 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:09 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:09 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:09 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x24x6) for time after (2023-09-02 18:00:00)
14:09:09 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 17:00:00) in space (linearNDFast)
14:09:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:09 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 18:00:00) in space (linearNDFast)
14:09:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3605 elements, expanding data 1
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 2
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3605 elements, expanding data 1
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 2
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3721 elements, expanding data 1
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 286 elements, expanding data 2
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 3
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3721 elements, expanding data 1
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 286 elements, expanding data 2
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 3
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3721 elements, expanding data 1
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 286 elements, expanding data 2
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 3
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3721 elements, expanding data 1
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 286 elements, expanding data 2
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 3
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3721 elements, expanding data 1
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 286 elements, expanding data 2
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 3
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3721 elements, expanding data 1
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 286 elements, expanding data 2
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 3
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4817 elements, expanding data 1
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2279 elements, expanding data 2
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4817 elements, expanding data 1
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2279 elements, expanding data 2
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4817 elements, expanding data 1
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2279 elements, expanding data 2
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4817 elements, expanding data 1
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2279 elements, expanding data 2
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4817 elements, expanding data 1
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2279 elements, expanding data 2
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4817 elements, expanding data 1
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2279 elements, expanding data 2
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3605 elements, expanding data 1
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 2
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3605 elements, expanding data 1
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 2
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3605 elements, expanding data 1
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 2
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3605 elements, expanding data 1
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 2
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3605 elements, expanding data 1
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 2
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3605 elements, expanding data 1
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 2
14:09:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:09 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 17:00:00, weight 0.06) and
after (2023-09-02 18:00:00, weight 0.94) in time
14:09:09 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.10540598686039 and -58.95815594787921 degrees.
14:09:09 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.10540598686039 and -58.95815594787921 degrees.
14:09:09 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:09 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:09 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:09 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:09 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:09 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:09 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.736074 (min) 1.11015 (max)
14:09:09 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.971296 (min) 0.749945 (max)
14:09:09 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -8.01937e-05 (min) 0.000753365 (max)
14:09:09 DEBUG opendrift.models.basemodel:1524: x_wind: -1.98975 (min) 11.9878 (max)
14:09:09 DEBUG opendrift.models.basemodel:1524: y_wind: -6.55028 (min) 8.18564 (max)
14:09:09 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:09 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:09 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:09 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:09 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:09 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:09 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:09 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4816 (max)
14:09:09 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:09 DEBUG opendrift.models.basemodel:1527: 5833 active elements
14:09:09 DEBUG opendrift.models.basemodel:1538: 59.09601456610909 <- latitude -> 59.189817956811
14:09:09 DEBUG opendrift.models.basemodel:1543: 10.89460458508147 <- longitude -> 11.041854607039296
14:09:09 DEBUG opendrift.models.basemodel:1548: -15.471581687927246 <- z -> 0.0
14:09:09 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:09 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:09 DEBUG opendrift.models.physics_methods:1050: min: 0.088030, mean: 4.651867, max: 10.253837
14:09:09 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.088030, mean: 4.651867, max: 10.253837
14:09:09 DEBUG opendrift.models.basemodel:813: 937 elements hit coastline, moving back to water
14:09:09 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:09:09 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:09 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:09 DEBUG opendrift.models.physics_methods:828: Advecting 51 of 5833 elements above 0.100m with wind-sheared ocean current (0.000057 m/s - 0.171274 m/s)
14:09:09 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:09 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:09 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.13010345762689587
14:09:09 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:09 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:09 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:09 DEBUG opendrift.models.oceandrift:582: 718 elements penetrated seafloor, lifting up
14:09:09 DEBUG opendrift.models.oceandrift:600: 54 elements reached seafloor, set to bottom
14:09:09 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
14:09:09 DEBUG opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
14:09:09 DEBUG opendrift.models.oceandrift:582: 609 elements penetrated seafloor, lifting up
14:09:09 DEBUG opendrift.models.oceandrift:600: 60 elements reached seafloor, set to bottom
14:09:09 DEBUG opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
14:09:09 DEBUG opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
14:09:09 DEBUG opendrift.models.oceandrift:582: 593 elements penetrated seafloor, lifting up
14:09:09 DEBUG opendrift.models.oceandrift:600: 58 elements reached seafloor, set to bottom
14:09:09 DEBUG opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
14:09:09 DEBUG opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
14:09:09 DEBUG opendrift.models.oceandrift:582: 590 elements penetrated seafloor, lifting up
14:09:09 DEBUG opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
14:09:09 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
14:09:09 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
14:09:09 DEBUG opendrift.models.oceandrift:582: 612 elements penetrated seafloor, lifting up
14:09:09 DEBUG opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
14:09:09 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
14:09:09 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
14:09:09 DEBUG opendrift.models.oceandrift:582: 566 elements penetrated seafloor, lifting up
14:09:09 DEBUG opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
14:09:09 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
14:09:09 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
14:09:09 DEBUG opendrift.models.oceandrift:582: 515 elements penetrated seafloor, lifting up
14:09:09 DEBUG opendrift.models.oceandrift:600: 36 elements reached seafloor, set to bottom
14:09:09 DEBUG opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
14:09:09 DEBUG opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
14:09:09 DEBUG opendrift.models.oceandrift:582: 536 elements penetrated seafloor, lifting up
14:09:09 DEBUG opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
14:09:09 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
14:09:09 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
14:09:09 DEBUG opendrift.models.oceandrift:582: 511 elements penetrated seafloor, lifting up
14:09:09 DEBUG opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
14:09:09 DEBUG opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
14:09:09 DEBUG opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
14:09:09 DEBUG opendrift.models.oceandrift:582: 494 elements penetrated seafloor, lifting up
14:09:09 DEBUG opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
14:09:09 DEBUG opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
14:09:09 DEBUG opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
14:09:09 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:09 DEBUG opendrift.models.basemodel:2945: 5833 active elements (0 deactivated)
14:09:09 DEBUG opendrift.models.basemodel:1658: to be seeded: 4167, already seeded 5833
14:09:09 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:09:09 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:09 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:09 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:09 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:09 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:09 DEBUG opendrift.models.basemodel:1253: Data needed for 5868 elements
14:09:09 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:09 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 18:00:00 (before)
2023-09-02 19:00:00 (after)
14:09:09 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 18:00:00) in space (linearNDFast)
14:09:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:09 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:09 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:09 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:09 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:09 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:09 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4925 (max)
14:09:09 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:09 DEBUG opendrift.models.basemodel:1527: 5868 active elements
14:09:09 DEBUG opendrift.models.basemodel:1538: 59.09819196391046 <- latitude -> 59.189865674244096
14:09:09 DEBUG opendrift.models.basemodel:1543: 10.894670720724719 <- longitude -> 11.041780274190568
14:09:09 DEBUG opendrift.models.basemodel:1548: -15.044290940761671 <- z -> 0.0
14:09:09 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:09 DEBUG opendrift.models.basemodel:836: Lifting 354 elements to seafloor.
14:09:09 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:09 INFO opendrift.models.basemodel:2882: 2023-09-02 18:06:21.121579 - step 169 of 216 - 5868 active elements (0 deactivated)
14:09:09 DEBUG opendrift.models.basemodel:2888: 4132 elements scheduled.
14:09:09 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:09 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:09 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:09 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:09 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:09 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:09 DEBUG opendrift.models.basemodel:1253: Data needed for 5868 elements
14:09:09 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:09 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:09 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:09 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:09 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:09 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:09 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:09 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:09 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:09 DEBUG opendrift.models.basemodel:1253: Data needed for 5868 elements
14:09:09 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:09 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 18:00:00 (before)
2023-09-02 19:00:00 (after)
14:09:10 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:10 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:10 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:10 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:10 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:10 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:10 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x24x6) for time after (2023-09-02 19:00:00)
14:09:10 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 18:00:00) in space (linearNDFast)
14:09:10 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:10 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 19:00:00) in space (linearNDFast)
14:09:10 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3662 elements, expanding data 1
14:09:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 2
14:09:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3662 elements, expanding data 1
14:09:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 2
14:09:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3766 elements, expanding data 1
14:09:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 296 elements, expanding data 2
14:09:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 3
14:09:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3766 elements, expanding data 1
14:09:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 296 elements, expanding data 2
14:09:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 3
14:09:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3766 elements, expanding data 1
14:09:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 296 elements, expanding data 2
14:09:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 3
14:09:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3766 elements, expanding data 1
14:09:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 296 elements, expanding data 2
14:09:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 3
14:09:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3766 elements, expanding data 1
14:09:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 296 elements, expanding data 2
14:09:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 3
14:09:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3766 elements, expanding data 1
14:09:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 296 elements, expanding data 2
14:09:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 3
14:09:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4870 elements, expanding data 1
14:09:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2297 elements, expanding data 2
14:09:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4870 elements, expanding data 1
14:09:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2297 elements, expanding data 2
14:09:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4870 elements, expanding data 1
14:09:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2297 elements, expanding data 2
14:09:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4870 elements, expanding data 1
14:09:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2297 elements, expanding data 2
14:09:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4870 elements, expanding data 1
14:09:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2297 elements, expanding data 2
14:09:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4870 elements, expanding data 1
14:09:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2297 elements, expanding data 2
14:09:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3662 elements, expanding data 1
14:09:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 2
14:09:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3662 elements, expanding data 1
14:09:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 2
14:09:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3662 elements, expanding data 1
14:09:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 2
14:09:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3662 elements, expanding data 1
14:09:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 2
14:09:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3662 elements, expanding data 1
14:09:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 2
14:09:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3662 elements, expanding data 1
14:09:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 2
14:09:10 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 18:00:00, weight 0.89) and
after (2023-09-02 19:00:00, weight 0.11) in time
14:09:10 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.10533985463072 and -58.95823027300516 degrees.
14:09:10 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.10533985463072 and -58.95823027300516 degrees.
14:09:10 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:10 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:10 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:10 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:10 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:10 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:10 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.776616 (min) 1.07315 (max)
14:09:10 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.890853 (min) 0.782468 (max)
14:09:10 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -8.70969e-05 (min) 0.000749436 (max)
14:09:10 DEBUG opendrift.models.basemodel:1524: x_wind: -2.19394 (min) 12.0401 (max)
14:09:10 DEBUG opendrift.models.basemodel:1524: y_wind: -6.6499 (min) 9.19721 (max)
14:09:10 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:10 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:10 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:10 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:10 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:10 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:10 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:10 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4925 (max)
14:09:10 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:10 DEBUG opendrift.models.basemodel:1527: 5868 active elements
14:09:10 DEBUG opendrift.models.basemodel:1538: 59.09819196391046 <- latitude -> 59.189865674244096
14:09:10 DEBUG opendrift.models.basemodel:1543: 10.894670720724719 <- longitude -> 11.041780274190568
14:09:10 DEBUG opendrift.models.basemodel:1548: -15.044290940761671 <- z -> 0.0
14:09:10 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:10 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:10 DEBUG opendrift.models.physics_methods:1050: min: 0.118843, mean: 4.652182, max: 10.782847
14:09:10 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.118843, mean: 4.652182, max: 10.782847
14:09:10 DEBUG opendrift.models.basemodel:813: 929 elements hit coastline, moving back to water
14:09:10 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:09:10 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:10 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:10 DEBUG opendrift.models.physics_methods:828: Advecting 44 of 5868 elements above 0.100m with wind-sheared ocean current (0.001582 m/s - 0.208792 m/s)
14:09:10 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:10 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:10 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.14387378315694807
14:09:10 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:10 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:10 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:10 DEBUG opendrift.models.oceandrift:582: 712 elements penetrated seafloor, lifting up
14:09:10 DEBUG opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
14:09:10 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
14:09:10 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
14:09:10 DEBUG opendrift.models.oceandrift:582: 593 elements penetrated seafloor, lifting up
14:09:10 DEBUG opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
14:09:10 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
14:09:10 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
14:09:10 DEBUG opendrift.models.oceandrift:582: 571 elements penetrated seafloor, lifting up
14:09:10 DEBUG opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
14:09:10 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
14:09:10 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
14:09:10 DEBUG opendrift.models.oceandrift:582: 564 elements penetrated seafloor, lifting up
14:09:10 DEBUG opendrift.models.oceandrift:600: 65 elements reached seafloor, set to bottom
14:09:10 DEBUG opendrift.models.basemodel:836: Lifting 65 elements to seafloor.
14:09:10 DEBUG opendrift.models.sedimentdrift:112: Settling 65 elements at seafloor
14:09:10 DEBUG opendrift.models.oceandrift:582: 528 elements penetrated seafloor, lifting up
14:09:10 DEBUG opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
14:09:10 DEBUG opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
14:09:10 DEBUG opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
14:09:10 DEBUG opendrift.models.oceandrift:582: 515 elements penetrated seafloor, lifting up
14:09:10 DEBUG opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
14:09:10 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
14:09:10 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
14:09:10 DEBUG opendrift.models.oceandrift:582: 503 elements penetrated seafloor, lifting up
14:09:10 DEBUG opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
14:09:10 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
14:09:10 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
14:09:10 DEBUG opendrift.models.oceandrift:582: 539 elements penetrated seafloor, lifting up
14:09:10 DEBUG opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
14:09:10 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
14:09:10 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
14:09:10 DEBUG opendrift.models.oceandrift:582: 515 elements penetrated seafloor, lifting up
14:09:10 DEBUG opendrift.models.oceandrift:600: 42 elements reached seafloor, set to bottom
14:09:10 DEBUG opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
14:09:10 DEBUG opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
14:09:10 DEBUG opendrift.models.oceandrift:582: 496 elements penetrated seafloor, lifting up
14:09:10 DEBUG opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
14:09:10 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
14:09:10 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
14:09:10 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:10 DEBUG opendrift.models.basemodel:2945: 5868 active elements (0 deactivated)
14:09:10 DEBUG opendrift.models.basemodel:1658: to be seeded: 4132, already seeded 5868
14:09:10 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:09:10 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:10 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:10 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:10 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:10 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:10 DEBUG opendrift.models.basemodel:1253: Data needed for 5903 elements
14:09:10 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:10 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 18:00:00 (before)
2023-09-02 19:00:00 (after)
14:09:10 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 18:00:00) in space (linearNDFast)
14:09:10 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:10 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:10 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:10 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:10 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:10 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:10 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4878 (max)
14:09:10 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:10 DEBUG opendrift.models.basemodel:1527: 5903 active elements
14:09:10 DEBUG opendrift.models.basemodel:1538: 59.09781994474105 <- latitude -> 59.18865006353462
14:09:10 DEBUG opendrift.models.basemodel:1543: 10.896188054078667 <- longitude -> 11.045555751002905
14:09:10 DEBUG opendrift.models.basemodel:1548: -14.692662467956543 <- z -> 0.0
14:09:10 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:10 DEBUG opendrift.models.basemodel:836: Lifting 360 elements to seafloor.
14:09:10 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:10 INFO opendrift.models.basemodel:2882: 2023-09-02 18:16:21.121579 - step 170 of 216 - 5903 active elements (0 deactivated)
14:09:10 DEBUG opendrift.models.basemodel:2888: 4097 elements scheduled.
14:09:10 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:10 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:10 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:10 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:10 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:10 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:10 DEBUG opendrift.models.basemodel:1253: Data needed for 5903 elements
14:09:10 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:10 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:10 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:10 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:10 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:10 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:10 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:10 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:10 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:10 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:10 DEBUG opendrift.models.basemodel:1253: Data needed for 5903 elements
14:09:10 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:10 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 18:00:00 (before)
2023-09-02 19:00:00 (after)
14:09:11 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:11 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:11 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:11 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:11 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:11 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:11 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x25x5) for time after (2023-09-02 19:00:00)
14:09:11 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 18:00:00) in space (linearNDFast)
14:09:11 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:11 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 19:00:00) in space (linearNDFast)
14:09:11 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3701 elements, expanding data 1
14:09:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 2
14:09:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3701 elements, expanding data 1
14:09:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 2
14:09:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3805 elements, expanding data 1
14:09:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 291 elements, expanding data 2
14:09:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 3
14:09:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3805 elements, expanding data 1
14:09:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 291 elements, expanding data 2
14:09:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 3
14:09:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3805 elements, expanding data 1
14:09:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 291 elements, expanding data 2
14:09:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 3
14:09:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3805 elements, expanding data 1
14:09:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 291 elements, expanding data 2
14:09:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 3
14:09:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3805 elements, expanding data 1
14:09:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 291 elements, expanding data 2
14:09:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 3
14:09:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4904 elements, expanding data 1
14:09:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2314 elements, expanding data 2
14:09:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4904 elements, expanding data 1
14:09:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2314 elements, expanding data 2
14:09:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4904 elements, expanding data 1
14:09:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2314 elements, expanding data 2
14:09:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4904 elements, expanding data 1
14:09:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2314 elements, expanding data 2
14:09:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4904 elements, expanding data 1
14:09:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2314 elements, expanding data 2
14:09:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3701 elements, expanding data 1
14:09:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 2
14:09:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3701 elements, expanding data 1
14:09:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 2
14:09:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3701 elements, expanding data 1
14:09:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 2
14:09:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3701 elements, expanding data 1
14:09:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 2
14:09:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3701 elements, expanding data 1
14:09:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 2
14:09:11 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 18:00:00, weight 0.73) and
after (2023-09-02 19:00:00, weight 0.27) in time
14:09:11 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.10382251972109 and -58.95445480839153 degrees.
14:09:11 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.10382251972109 and -58.95445480839153 degrees.
14:09:11 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:11 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:11 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:11 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:11 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:11 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:11 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.822332 (min) 1.20171 (max)
14:09:11 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.00032 (min) 0.76414 (max)
14:09:11 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -8.31257e-05 (min) 0.000680678 (max)
14:09:11 DEBUG opendrift.models.basemodel:1524: x_wind: -2.44835 (min) 12.3863 (max)
14:09:11 DEBUG opendrift.models.basemodel:1524: y_wind: -7.33243 (min) 7.40607 (max)
14:09:11 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:11 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:11 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:11 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:11 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:11 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:11 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:11 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4878 (max)
14:09:11 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:11 DEBUG opendrift.models.basemodel:1527: 5903 active elements
14:09:11 DEBUG opendrift.models.basemodel:1538: 59.09781994474105 <- latitude -> 59.18865006353462
14:09:11 DEBUG opendrift.models.basemodel:1543: 10.896188054078667 <- longitude -> 11.045555751002905
14:09:11 DEBUG opendrift.models.basemodel:1548: -14.616438865661621 <- z -> 0.0
14:09:11 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:11 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:11 DEBUG opendrift.models.physics_methods:1050: min: 0.152621, mean: 4.561543, max: 10.757230
14:09:11 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.152621, mean: 4.561543, max: 10.757230
14:09:11 DEBUG opendrift.models.basemodel:813: 944 elements hit coastline, moving back to water
14:09:11 DEBUG opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
14:09:11 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:11 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:11 DEBUG opendrift.models.physics_methods:828: Advecting 47 of 5903 elements above 0.100m with wind-sheared ocean current (0.001909 m/s - 0.198656 m/s)
14:09:11 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:11 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:11 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.14319097927625654
14:09:11 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:11 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:11 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:11 DEBUG opendrift.models.oceandrift:582: 751 elements penetrated seafloor, lifting up
14:09:11 DEBUG opendrift.models.oceandrift:600: 64 elements reached seafloor, set to bottom
14:09:11 DEBUG opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
14:09:11 DEBUG opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
14:09:11 DEBUG opendrift.models.oceandrift:582: 586 elements penetrated seafloor, lifting up
14:09:11 DEBUG opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
14:09:11 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
14:09:11 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
14:09:11 DEBUG opendrift.models.oceandrift:582: 555 elements penetrated seafloor, lifting up
14:09:11 DEBUG opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
14:09:11 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
14:09:11 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
14:09:11 DEBUG opendrift.models.oceandrift:582: 575 elements penetrated seafloor, lifting up
14:09:11 DEBUG opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
14:09:11 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
14:09:11 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
14:09:11 DEBUG opendrift.models.oceandrift:582: 569 elements penetrated seafloor, lifting up
14:09:11 DEBUG opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
14:09:11 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
14:09:11 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
14:09:11 DEBUG opendrift.models.oceandrift:582: 560 elements penetrated seafloor, lifting up
14:09:11 DEBUG opendrift.models.oceandrift:600: 42 elements reached seafloor, set to bottom
14:09:11 DEBUG opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
14:09:11 DEBUG opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
14:09:11 DEBUG opendrift.models.oceandrift:582: 532 elements penetrated seafloor, lifting up
14:09:11 DEBUG opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
14:09:11 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
14:09:11 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
14:09:11 DEBUG opendrift.models.oceandrift:582: 551 elements penetrated seafloor, lifting up
14:09:11 DEBUG opendrift.models.oceandrift:600: 44 elements reached seafloor, set to bottom
14:09:11 DEBUG opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
14:09:11 DEBUG opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
14:09:11 DEBUG opendrift.models.oceandrift:582: 503 elements penetrated seafloor, lifting up
14:09:11 DEBUG opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
14:09:11 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
14:09:11 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
14:09:11 DEBUG opendrift.models.oceandrift:582: 553 elements penetrated seafloor, lifting up
14:09:11 DEBUG opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
14:09:11 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
14:09:11 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
14:09:11 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:11 DEBUG opendrift.models.basemodel:2945: 5903 active elements (0 deactivated)
14:09:11 DEBUG opendrift.models.basemodel:1658: to be seeded: 4097, already seeded 5903
14:09:11 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:09:11 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:11 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:11 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:11 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:11 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:11 DEBUG opendrift.models.basemodel:1253: Data needed for 5937 elements
14:09:11 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:11 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 18:00:00 (before)
2023-09-02 19:00:00 (after)
14:09:11 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 18:00:00) in space (linearNDFast)
14:09:11 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:11 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:11 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:11 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:11 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:11 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:11 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4495 (max)
14:09:11 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:11 DEBUG opendrift.models.basemodel:1527: 5937 active elements
14:09:11 DEBUG opendrift.models.basemodel:1538: 59.09882642736055 <- latitude -> 59.18918088265802
14:09:11 DEBUG opendrift.models.basemodel:1543: 10.893485993134725 <- longitude -> 11.047528221384535
14:09:11 DEBUG opendrift.models.basemodel:1548: -14.896286239624024 <- z -> 0.0
14:09:11 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:11 DEBUG opendrift.models.basemodel:836: Lifting 397 elements to seafloor.
14:09:11 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:11 INFO opendrift.models.basemodel:2882: 2023-09-02 18:26:21.121579 - step 171 of 216 - 5937 active elements (0 deactivated)
14:09:11 DEBUG opendrift.models.basemodel:2888: 4063 elements scheduled.
14:09:11 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:11 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:11 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:11 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:11 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:11 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:11 DEBUG opendrift.models.basemodel:1253: Data needed for 5937 elements
14:09:11 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:11 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:11 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:11 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:11 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:11 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:11 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:11 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:11 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:11 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:11 DEBUG opendrift.models.basemodel:1253: Data needed for 5937 elements
14:09:11 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:11 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 18:00:00 (before)
2023-09-02 19:00:00 (after)
14:09:12 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:12 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:12 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:12 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:12 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:12 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:12 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x25x5) for time after (2023-09-02 19:00:00)
14:09:12 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 18:00:00) in space (linearNDFast)
14:09:12 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:12 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 19:00:00) in space (linearNDFast)
14:09:12 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3728 elements, expanding data 1
14:09:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 2
14:09:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3728 elements, expanding data 1
14:09:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 2
14:09:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3837 elements, expanding data 1
14:09:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 302 elements, expanding data 2
14:09:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 3
14:09:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3837 elements, expanding data 1
14:09:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 302 elements, expanding data 2
14:09:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 3
14:09:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3837 elements, expanding data 1
14:09:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 302 elements, expanding data 2
14:09:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 3
14:09:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3837 elements, expanding data 1
14:09:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 302 elements, expanding data 2
14:09:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 3
14:09:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3837 elements, expanding data 1
14:09:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 302 elements, expanding data 2
14:09:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 3
14:09:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4935 elements, expanding data 1
14:09:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2353 elements, expanding data 2
14:09:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4935 elements, expanding data 1
14:09:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2353 elements, expanding data 2
14:09:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4935 elements, expanding data 1
14:09:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2353 elements, expanding data 2
14:09:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4935 elements, expanding data 1
14:09:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2353 elements, expanding data 2
14:09:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4935 elements, expanding data 1
14:09:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2353 elements, expanding data 2
14:09:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3728 elements, expanding data 1
14:09:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 2
14:09:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3728 elements, expanding data 1
14:09:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 2
14:09:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3728 elements, expanding data 1
14:09:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 2
14:09:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3728 elements, expanding data 1
14:09:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 2
14:09:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3728 elements, expanding data 1
14:09:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 2
14:09:12 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 18:00:00, weight 0.56) and
after (2023-09-02 19:00:00, weight 0.44) in time
14:09:12 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.10652458323328 and -58.952482333133474 degrees.
14:09:12 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.10652458323328 and -58.952482333133474 degrees.
14:09:12 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:12 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:12 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:12 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:12 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:12 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:12 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.819934 (min) 1.26841 (max)
14:09:12 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.04152 (min) 0.762673 (max)
14:09:12 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -7.48717e-05 (min) 0.00067146 (max)
14:09:12 DEBUG opendrift.models.basemodel:1524: x_wind: -3.13181 (min) 11.322 (max)
14:09:12 DEBUG opendrift.models.basemodel:1524: y_wind: -6.20765 (min) 8.26024 (max)
14:09:12 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:12 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:12 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:12 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:12 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:12 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:12 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:12 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4495 (max)
14:09:12 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:12 DEBUG opendrift.models.basemodel:1527: 5937 active elements
14:09:12 DEBUG opendrift.models.basemodel:1538: 59.09882642736055 <- latitude -> 59.18918088265802
14:09:12 DEBUG opendrift.models.basemodel:1543: 10.893485993134725 <- longitude -> 11.047528221384535
14:09:12 DEBUG opendrift.models.basemodel:1548: -14.896286239624024 <- z -> 0.0
14:09:12 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:12 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:12 DEBUG opendrift.models.physics_methods:1050: min: 0.013563, mean: 4.482392, max: 10.042526
14:09:12 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.013563, mean: 4.482392, max: 10.042526
14:09:12 DEBUG opendrift.models.basemodel:813: 932 elements hit coastline, moving back to water
14:09:12 DEBUG opendrift.models.basemodel:836: Lifting 155 elements to seafloor.
14:09:12 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:12 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:12 DEBUG opendrift.models.physics_methods:828: Advecting 44 of 5937 elements above 0.100m with wind-sheared ocean current (0.000007 m/s - 0.160368 m/s)
14:09:12 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:12 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:12 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.12479650862033843
14:09:12 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:12 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:12 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:12 DEBUG opendrift.models.oceandrift:582: 713 elements penetrated seafloor, lifting up
14:09:12 DEBUG opendrift.models.oceandrift:600: 66 elements reached seafloor, set to bottom
14:09:12 DEBUG opendrift.models.basemodel:836: Lifting 66 elements to seafloor.
14:09:12 DEBUG opendrift.models.sedimentdrift:112: Settling 66 elements at seafloor
14:09:12 DEBUG opendrift.models.oceandrift:582: 606 elements penetrated seafloor, lifting up
14:09:12 DEBUG opendrift.models.oceandrift:600: 73 elements reached seafloor, set to bottom
14:09:12 DEBUG opendrift.models.basemodel:836: Lifting 73 elements to seafloor.
14:09:12 DEBUG opendrift.models.sedimentdrift:112: Settling 73 elements at seafloor
14:09:12 DEBUG opendrift.models.oceandrift:582: 612 elements penetrated seafloor, lifting up
14:09:12 DEBUG opendrift.models.oceandrift:600: 63 elements reached seafloor, set to bottom
14:09:12 DEBUG opendrift.models.basemodel:836: Lifting 63 elements to seafloor.
14:09:12 DEBUG opendrift.models.sedimentdrift:112: Settling 63 elements at seafloor
14:09:12 DEBUG opendrift.models.oceandrift:582: 561 elements penetrated seafloor, lifting up
14:09:12 DEBUG opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
14:09:12 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
14:09:12 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
14:09:12 DEBUG opendrift.models.oceandrift:582: 519 elements penetrated seafloor, lifting up
14:09:12 DEBUG opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
14:09:12 DEBUG opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
14:09:12 DEBUG opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
14:09:12 DEBUG opendrift.models.oceandrift:582: 514 elements penetrated seafloor, lifting up
14:09:12 DEBUG opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
14:09:12 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
14:09:12 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
14:09:12 DEBUG opendrift.models.oceandrift:582: 537 elements penetrated seafloor, lifting up
14:09:12 DEBUG opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
14:09:12 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
14:09:12 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
14:09:12 DEBUG opendrift.models.oceandrift:582: 539 elements penetrated seafloor, lifting up
14:09:12 DEBUG opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
14:09:12 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
14:09:12 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
14:09:12 DEBUG opendrift.models.oceandrift:582: 523 elements penetrated seafloor, lifting up
14:09:12 DEBUG opendrift.models.oceandrift:600: 60 elements reached seafloor, set to bottom
14:09:12 DEBUG opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
14:09:12 DEBUG opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
14:09:12 DEBUG opendrift.models.oceandrift:582: 524 elements penetrated seafloor, lifting up
14:09:12 DEBUG opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
14:09:12 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
14:09:12 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
14:09:12 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:12 DEBUG opendrift.models.basemodel:2945: 5937 active elements (0 deactivated)
14:09:12 DEBUG opendrift.models.basemodel:1658: to be seeded: 4063, already seeded 5937
14:09:12 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:09:12 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:12 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:12 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:12 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:12 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:12 DEBUG opendrift.models.basemodel:1253: Data needed for 5972 elements
14:09:12 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:12 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 18:00:00 (before)
2023-09-02 19:00:00 (after)
14:09:12 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 18:00:00) in space (linearNDFast)
14:09:12 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:12 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:12 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:12 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:12 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:12 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:12 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4272 (max)
14:09:12 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:12 DEBUG opendrift.models.basemodel:1527: 5972 active elements
14:09:12 DEBUG opendrift.models.basemodel:1538: 59.097789082884475 <- latitude -> 59.19108035095178
14:09:12 DEBUG opendrift.models.basemodel:1543: 10.888814609461935 <- longitude -> 11.048160041955086
14:09:12 DEBUG opendrift.models.basemodel:1548: -14.844626655578613 <- z -> 0.0
14:09:12 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:12 DEBUG opendrift.models.basemodel:836: Lifting 418 elements to seafloor.
14:09:12 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:12 INFO opendrift.models.basemodel:2882: 2023-09-02 18:36:21.121579 - step 172 of 216 - 5972 active elements (0 deactivated)
14:09:12 DEBUG opendrift.models.basemodel:2888: 4028 elements scheduled.
14:09:12 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:12 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:12 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:12 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:12 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:12 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:12 DEBUG opendrift.models.basemodel:1253: Data needed for 5972 elements
14:09:12 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:12 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:12 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:12 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:12 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:12 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:12 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:12 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:12 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:12 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:12 DEBUG opendrift.models.basemodel:1253: Data needed for 5972 elements
14:09:12 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:12 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 18:00:00 (before)
2023-09-02 19:00:00 (after)
14:09:13 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:13 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:13 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:13 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:13 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:13 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:13 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x25x5) for time after (2023-09-02 19:00:00)
14:09:13 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 18:00:00) in space (linearNDFast)
14:09:13 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:13 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 19:00:00) in space (linearNDFast)
14:09:13 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3747 elements, expanding data 1
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 2
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3747 elements, expanding data 1
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 2
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3844 elements, expanding data 1
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 315 elements, expanding data 2
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 3
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3844 elements, expanding data 1
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 315 elements, expanding data 2
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 3
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3844 elements, expanding data 1
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 315 elements, expanding data 2
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 3
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3844 elements, expanding data 1
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 315 elements, expanding data 2
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 3
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3844 elements, expanding data 1
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 315 elements, expanding data 2
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 3
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4978 elements, expanding data 1
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2333 elements, expanding data 2
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4978 elements, expanding data 1
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2333 elements, expanding data 2
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4978 elements, expanding data 1
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2333 elements, expanding data 2
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4978 elements, expanding data 1
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2333 elements, expanding data 2
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4978 elements, expanding data 1
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2333 elements, expanding data 2
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3747 elements, expanding data 1
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 2
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3747 elements, expanding data 1
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 2
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3747 elements, expanding data 1
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 2
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3747 elements, expanding data 1
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 2
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3747 elements, expanding data 1
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 2
14:09:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:13 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 18:00:00, weight 0.39) and
after (2023-09-02 19:00:00, weight 0.61) in time
14:09:13 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.11119596287118 and -58.95185051715501 degrees.
14:09:13 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.11119596287118 and -58.95185051715501 degrees.
14:09:13 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:13 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:13 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:13 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:13 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:13 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:13 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.761808 (min) 1.21682 (max)
14:09:13 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.03712 (min) 0.794094 (max)
14:09:13 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -9.58613e-05 (min) 0.000670171 (max)
14:09:13 DEBUG opendrift.models.basemodel:1524: x_wind: -4.0562 (min) 11.503 (max)
14:09:13 DEBUG opendrift.models.basemodel:1524: y_wind: -6.10562 (min) 8.3938 (max)
14:09:13 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:13 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:13 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:13 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:13 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:13 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:13 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:13 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4272 (max)
14:09:13 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:13 DEBUG opendrift.models.basemodel:1527: 5972 active elements
14:09:13 DEBUG opendrift.models.basemodel:1538: 59.097789082884475 <- latitude -> 59.19108035095178
14:09:13 DEBUG opendrift.models.basemodel:1543: 10.888814609461935 <- longitude -> 11.048160041955086
14:09:13 DEBUG opendrift.models.basemodel:1548: -14.844626655578613 <- z -> 0.0
14:09:13 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:13 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:13 DEBUG opendrift.models.physics_methods:1050: min: 0.161872, mean: 4.324231, max: 11.236362
14:09:13 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.161872, mean: 4.324231, max: 11.236362
14:09:13 DEBUG opendrift.models.basemodel:813: 881 elements hit coastline, moving back to water
14:09:13 DEBUG opendrift.models.basemodel:836: Lifting 153 elements to seafloor.
14:09:13 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:13 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:13 DEBUG opendrift.models.physics_methods:828: Advecting 46 of 5972 elements above 0.100m with wind-sheared ocean current (0.000155 m/s - 0.178782 m/s)
14:09:13 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:13 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:13 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.15623027527530667
14:09:13 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:13 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:13 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:13 DEBUG opendrift.models.oceandrift:582: 689 elements penetrated seafloor, lifting up
14:09:13 DEBUG opendrift.models.oceandrift:600: 64 elements reached seafloor, set to bottom
14:09:13 DEBUG opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
14:09:13 DEBUG opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
14:09:13 DEBUG opendrift.models.oceandrift:582: 605 elements penetrated seafloor, lifting up
14:09:13 DEBUG opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
14:09:13 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
14:09:13 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
14:09:13 DEBUG opendrift.models.oceandrift:582: 566 elements penetrated seafloor, lifting up
14:09:13 DEBUG opendrift.models.oceandrift:600: 64 elements reached seafloor, set to bottom
14:09:13 DEBUG opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
14:09:13 DEBUG opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
14:09:13 DEBUG opendrift.models.oceandrift:582: 566 elements penetrated seafloor, lifting up
14:09:13 DEBUG opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
14:09:13 DEBUG opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
14:09:13 DEBUG opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
14:09:13 DEBUG opendrift.models.oceandrift:582: 533 elements penetrated seafloor, lifting up
14:09:13 DEBUG opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
14:09:13 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
14:09:13 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
14:09:13 DEBUG opendrift.models.oceandrift:582: 513 elements penetrated seafloor, lifting up
14:09:13 DEBUG opendrift.models.oceandrift:600: 56 elements reached seafloor, set to bottom
14:09:13 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
14:09:13 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
14:09:13 DEBUG opendrift.models.oceandrift:582: 510 elements penetrated seafloor, lifting up
14:09:13 DEBUG opendrift.models.oceandrift:600: 58 elements reached seafloor, set to bottom
14:09:13 DEBUG opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
14:09:13 DEBUG opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
14:09:13 DEBUG opendrift.models.oceandrift:582: 544 elements penetrated seafloor, lifting up
14:09:13 DEBUG opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
14:09:13 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
14:09:13 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
14:09:13 DEBUG opendrift.models.oceandrift:582: 485 elements penetrated seafloor, lifting up
14:09:13 DEBUG opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
14:09:13 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
14:09:13 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
14:09:13 DEBUG opendrift.models.oceandrift:582: 509 elements penetrated seafloor, lifting up
14:09:13 DEBUG opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
14:09:13 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
14:09:13 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
14:09:13 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:13 DEBUG opendrift.models.basemodel:2945: 5972 active elements (0 deactivated)
14:09:13 DEBUG opendrift.models.basemodel:1658: to be seeded: 4028, already seeded 5972
14:09:13 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:09:13 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:13 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:13 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:13 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:13 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:13 DEBUG opendrift.models.basemodel:1253: Data needed for 6007 elements
14:09:13 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:13 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 18:00:00 (before)
2023-09-02 19:00:00 (after)
14:09:13 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 18:00:00) in space (linearNDFast)
14:09:13 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:13 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:13 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:13 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:13 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:13 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:13 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4473 (max)
14:09:13 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:13 DEBUG opendrift.models.basemodel:1527: 6007 active elements
14:09:13 DEBUG opendrift.models.basemodel:1538: 59.098375273668125 <- latitude -> 59.18890621407442
14:09:13 DEBUG opendrift.models.basemodel:1543: 10.883429248547817 <- longitude -> 11.049773385431317
14:09:13 DEBUG opendrift.models.basemodel:1548: -15.394518127441406 <- z -> 0.0
14:09:13 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:13 DEBUG opendrift.models.basemodel:836: Lifting 394 elements to seafloor.
14:09:13 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:13 INFO opendrift.models.basemodel:2882: 2023-09-02 18:46:21.121579 - step 173 of 216 - 6007 active elements (0 deactivated)
14:09:13 DEBUG opendrift.models.basemodel:2888: 3993 elements scheduled.
14:09:13 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:13 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:13 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:13 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:13 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:13 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:13 DEBUG opendrift.models.basemodel:1253: Data needed for 6007 elements
14:09:13 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:13 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:13 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:13 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:13 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:13 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:13 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:13 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:13 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:13 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:13 DEBUG opendrift.models.basemodel:1253: Data needed for 6007 elements
14:09:13 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:13 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 18:00:00 (before)
2023-09-02 19:00:00 (after)
14:09:14 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:14 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:14 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:14 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:14 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:14 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:14 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x26x6) for time after (2023-09-02 19:00:00)
14:09:14 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 18:00:00) in space (linearNDFast)
14:09:14 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:14 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 19:00:00) in space (linearNDFast)
14:09:14 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3794 elements, expanding data 1
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 2
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3794 elements, expanding data 1
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 2
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3902 elements, expanding data 1
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 324 elements, expanding data 2
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 3
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3902 elements, expanding data 1
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 324 elements, expanding data 2
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 3
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3902 elements, expanding data 1
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 324 elements, expanding data 2
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 3
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3902 elements, expanding data 1
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 324 elements, expanding data 2
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 3
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3902 elements, expanding data 1
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 324 elements, expanding data 2
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 3
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3902 elements, expanding data 1
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 324 elements, expanding data 2
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 3
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5007 elements, expanding data 1
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2392 elements, expanding data 2
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5007 elements, expanding data 1
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2392 elements, expanding data 2
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5007 elements, expanding data 1
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2392 elements, expanding data 2
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5007 elements, expanding data 1
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2392 elements, expanding data 2
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5007 elements, expanding data 1
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2392 elements, expanding data 2
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5007 elements, expanding data 1
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2392 elements, expanding data 2
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3794 elements, expanding data 1
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 2
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3794 elements, expanding data 1
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 2
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3794 elements, expanding data 1
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 2
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3794 elements, expanding data 1
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 2
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3794 elements, expanding data 1
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 2
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3794 elements, expanding data 1
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 2
14:09:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:09:14 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 18:00:00, weight 0.23) and
after (2023-09-02 19:00:00, weight 0.77) in time
14:09:14 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.11658132265626 and -58.950237171518594 degrees.
14:09:14 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.11658132265626 and -58.950237171518594 degrees.
14:09:14 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:14 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:14 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:14 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:14 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:14 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:14 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.782254 (min) 1.2 (max)
14:09:14 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.10955 (min) 1.00423 (max)
14:09:14 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000102104 (min) 0.000716236 (max)
14:09:14 DEBUG opendrift.models.basemodel:1524: x_wind: -2.84028 (min) 12.0433 (max)
14:09:14 DEBUG opendrift.models.basemodel:1524: y_wind: -7.39747 (min) 7.60082 (max)
14:09:14 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:14 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:14 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:14 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:14 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:14 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:14 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:14 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4473 (max)
14:09:14 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:14 DEBUG opendrift.models.basemodel:1527: 6007 active elements
14:09:14 DEBUG opendrift.models.basemodel:1538: 59.098375273668125 <- latitude -> 59.18890621407442
14:09:14 DEBUG opendrift.models.basemodel:1543: 10.883429248547817 <- longitude -> 11.049773385431317
14:09:14 DEBUG opendrift.models.basemodel:1548: -15.375773429870605 <- z -> 0.0
14:09:14 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:14 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:14 DEBUG opendrift.models.physics_methods:1050: min: 0.066742, mean: 4.243374, max: 10.745605
14:09:14 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.066742, mean: 4.243374, max: 10.745605
14:09:14 DEBUG opendrift.models.basemodel:813: 970 elements hit coastline, moving back to water
14:09:14 DEBUG opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
14:09:14 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:14 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:14 DEBUG opendrift.models.physics_methods:828: Advecting 41 of 6007 elements above 0.100m with wind-sheared ocean current (0.004101 m/s - 0.242041 m/s)
14:09:14 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:14 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:14 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.14288169245870588
14:09:14 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:14 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:14 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:14 DEBUG opendrift.models.oceandrift:582: 704 elements penetrated seafloor, lifting up
14:09:14 DEBUG opendrift.models.oceandrift:600: 70 elements reached seafloor, set to bottom
14:09:14 DEBUG opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
14:09:14 DEBUG opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
14:09:14 DEBUG opendrift.models.oceandrift:582: 620 elements penetrated seafloor, lifting up
14:09:14 DEBUG opendrift.models.oceandrift:600: 71 elements reached seafloor, set to bottom
14:09:14 DEBUG opendrift.models.basemodel:836: Lifting 71 elements to seafloor.
14:09:14 DEBUG opendrift.models.sedimentdrift:112: Settling 71 elements at seafloor
14:09:14 DEBUG opendrift.models.oceandrift:582: 606 elements penetrated seafloor, lifting up
14:09:14 DEBUG opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
14:09:14 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
14:09:14 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
14:09:14 DEBUG opendrift.models.oceandrift:582: 564 elements penetrated seafloor, lifting up
14:09:14 DEBUG opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
14:09:14 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
14:09:14 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
14:09:14 DEBUG opendrift.models.oceandrift:582: 560 elements penetrated seafloor, lifting up
14:09:14 DEBUG opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
14:09:14 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
14:09:14 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
14:09:14 DEBUG opendrift.models.oceandrift:582: 499 elements penetrated seafloor, lifting up
14:09:14 DEBUG opendrift.models.oceandrift:600: 59 elements reached seafloor, set to bottom
14:09:14 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
14:09:14 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
14:09:14 DEBUG opendrift.models.oceandrift:582: 499 elements penetrated seafloor, lifting up
14:09:14 DEBUG opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
14:09:14 DEBUG opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
14:09:14 DEBUG opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
14:09:14 DEBUG opendrift.models.oceandrift:582: 527 elements penetrated seafloor, lifting up
14:09:14 DEBUG opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
14:09:14 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
14:09:14 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
14:09:14 DEBUG opendrift.models.oceandrift:582: 494 elements penetrated seafloor, lifting up
14:09:14 DEBUG opendrift.models.oceandrift:600: 52 elements reached seafloor, set to bottom
14:09:14 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
14:09:14 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
14:09:14 DEBUG opendrift.models.oceandrift:582: 537 elements penetrated seafloor, lifting up
14:09:14 DEBUG opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
14:09:14 DEBUG opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
14:09:14 DEBUG opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
14:09:14 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:14 DEBUG opendrift.models.basemodel:2945: 6007 active elements (0 deactivated)
14:09:14 DEBUG opendrift.models.basemodel:1658: to be seeded: 3993, already seeded 6007
14:09:14 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:09:14 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:14 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:14 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:14 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:14 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:14 DEBUG opendrift.models.basemodel:1253: Data needed for 6042 elements
14:09:14 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:14 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 18:00:00 (before)
2023-09-02 19:00:00 (after)
14:09:14 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 18:00:00) in space (linearNDFast)
14:09:14 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:14 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:14 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:14 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:14 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:14 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:14 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4266 (max)
14:09:14 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:14 DEBUG opendrift.models.basemodel:1527: 6042 active elements
14:09:14 DEBUG opendrift.models.basemodel:1538: 59.09841279836034 <- latitude -> 59.189920828435234
14:09:14 DEBUG opendrift.models.basemodel:1543: 10.883279453368816 <- longitude -> 11.05042930521453
14:09:14 DEBUG opendrift.models.basemodel:1548: -15.12403678894043 <- z -> 0.0
14:09:14 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:14 DEBUG opendrift.models.basemodel:836: Lifting 405 elements to seafloor.
14:09:14 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:14 INFO opendrift.models.basemodel:2882: 2023-09-02 18:56:21.121579 - step 174 of 216 - 6042 active elements (0 deactivated)
14:09:14 DEBUG opendrift.models.basemodel:2888: 3958 elements scheduled.
14:09:14 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:14 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:14 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:14 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:14 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:14 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:14 DEBUG opendrift.models.basemodel:1253: Data needed for 6042 elements
14:09:14 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:14 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:14 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:14 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:14 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:14 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:14 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:14 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:14 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:14 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:14 DEBUG opendrift.models.basemodel:1253: Data needed for 6042 elements
14:09:14 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:14 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 18:00:00 (before)
2023-09-02 19:00:00 (after)
14:09:15 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:15 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:15 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:15 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:15 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:15 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:15 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x26x6) for time after (2023-09-02 19:00:00)
14:09:15 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 18:00:00) in space (linearNDFast)
14:09:15 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:15 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 19:00:00) in space (linearNDFast)
14:09:15 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3800 elements, expanding data 1
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 73 elements, expanding data 2
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3800 elements, expanding data 1
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 73 elements, expanding data 2
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3907 elements, expanding data 1
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 2
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 3
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3907 elements, expanding data 1
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 2
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 3
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3907 elements, expanding data 1
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 2
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 3
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3907 elements, expanding data 1
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 2
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 3
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3907 elements, expanding data 1
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 2
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 3
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3907 elements, expanding data 1
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 2
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 3
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5051 elements, expanding data 1
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2387 elements, expanding data 2
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5051 elements, expanding data 1
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2387 elements, expanding data 2
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5051 elements, expanding data 1
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2387 elements, expanding data 2
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5051 elements, expanding data 1
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2387 elements, expanding data 2
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5051 elements, expanding data 1
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2387 elements, expanding data 2
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5051 elements, expanding data 1
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2387 elements, expanding data 2
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3800 elements, expanding data 1
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 73 elements, expanding data 2
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3800 elements, expanding data 1
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 73 elements, expanding data 2
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3800 elements, expanding data 1
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 73 elements, expanding data 2
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3800 elements, expanding data 1
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 73 elements, expanding data 2
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3800 elements, expanding data 1
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 73 elements, expanding data 2
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3800 elements, expanding data 1
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 73 elements, expanding data 2
14:09:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:15 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 18:00:00, weight 0.06) and
after (2023-09-02 19:00:00, weight 0.94) in time
14:09:15 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.11673112174951 and -58.94958125484704 degrees.
14:09:15 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.11673112174951 and -58.94958125484704 degrees.
14:09:15 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:15 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:15 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:15 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:15 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:15 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:15 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.782387 (min) 1.21883 (max)
14:09:15 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.963688 (min) 0.838515 (max)
14:09:15 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000103224 (min) 0.000609204 (max)
14:09:15 DEBUG opendrift.models.basemodel:1524: x_wind: -3.11755 (min) 12.8216 (max)
14:09:15 DEBUG opendrift.models.basemodel:1524: y_wind: -6.21507 (min) 7.52233 (max)
14:09:15 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:15 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:15 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:15 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:15 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:15 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:15 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:15 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4266 (max)
14:09:15 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:15 DEBUG opendrift.models.basemodel:1527: 6042 active elements
14:09:15 DEBUG opendrift.models.basemodel:1538: 59.09841279836034 <- latitude -> 59.189920828435234
14:09:15 DEBUG opendrift.models.basemodel:1543: 10.883279453368816 <- longitude -> 11.05042930521453
14:09:15 DEBUG opendrift.models.basemodel:1548: -15.12403678894043 <- z -> 0.0
14:09:15 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:15 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:15 DEBUG opendrift.models.physics_methods:1050: min: 0.033688, mean: 4.154147, max: 11.007208
14:09:15 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.033688, mean: 4.154147, max: 11.007208
14:09:15 DEBUG opendrift.models.basemodel:813: 939 elements hit coastline, moving back to water
14:09:15 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:09:15 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:15 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:15 DEBUG opendrift.models.physics_methods:828: Advecting 38 of 6042 elements above 0.100m with wind-sheared ocean current (0.001466 m/s - 0.177752 m/s)
14:09:15 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:15 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:15 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.14992306996067045
14:09:15 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:15 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:15 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:15 DEBUG opendrift.models.oceandrift:582: 673 elements penetrated seafloor, lifting up
14:09:15 DEBUG opendrift.models.oceandrift:600: 76 elements reached seafloor, set to bottom
14:09:15 DEBUG opendrift.models.basemodel:836: Lifting 76 elements to seafloor.
14:09:15 DEBUG opendrift.models.sedimentdrift:112: Settling 76 elements at seafloor
14:09:15 DEBUG opendrift.models.oceandrift:582: 585 elements penetrated seafloor, lifting up
14:09:15 DEBUG opendrift.models.oceandrift:600: 62 elements reached seafloor, set to bottom
14:09:15 DEBUG opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
14:09:15 DEBUG opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
14:09:15 DEBUG opendrift.models.oceandrift:582: 567 elements penetrated seafloor, lifting up
14:09:15 DEBUG opendrift.models.oceandrift:600: 52 elements reached seafloor, set to bottom
14:09:15 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
14:09:15 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
14:09:15 DEBUG opendrift.models.oceandrift:582: 513 elements penetrated seafloor, lifting up
14:09:15 DEBUG opendrift.models.oceandrift:600: 62 elements reached seafloor, set to bottom
14:09:15 DEBUG opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
14:09:15 DEBUG opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
14:09:15 DEBUG opendrift.models.oceandrift:582: 503 elements penetrated seafloor, lifting up
14:09:15 DEBUG opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
14:09:15 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
14:09:15 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
14:09:15 DEBUG opendrift.models.oceandrift:582: 490 elements penetrated seafloor, lifting up
14:09:15 DEBUG opendrift.models.oceandrift:600: 69 elements reached seafloor, set to bottom
14:09:15 DEBUG opendrift.models.basemodel:836: Lifting 69 elements to seafloor.
14:09:15 DEBUG opendrift.models.sedimentdrift:112: Settling 69 elements at seafloor
14:09:15 DEBUG opendrift.models.oceandrift:582: 495 elements penetrated seafloor, lifting up
14:09:15 DEBUG opendrift.models.oceandrift:600: 54 elements reached seafloor, set to bottom
14:09:15 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
14:09:15 DEBUG opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
14:09:15 DEBUG opendrift.models.oceandrift:582: 471 elements penetrated seafloor, lifting up
14:09:15 DEBUG opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
14:09:15 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
14:09:15 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
14:09:15 DEBUG opendrift.models.oceandrift:582: 489 elements penetrated seafloor, lifting up
14:09:15 DEBUG opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
14:09:15 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
14:09:15 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
14:09:15 DEBUG opendrift.models.oceandrift:582: 461 elements penetrated seafloor, lifting up
14:09:15 DEBUG opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
14:09:15 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
14:09:15 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
14:09:15 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:15 DEBUG opendrift.models.basemodel:2945: 6042 active elements (0 deactivated)
14:09:15 DEBUG opendrift.models.basemodel:1658: to be seeded: 3958, already seeded 6042
14:09:15 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:09:15 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:15 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:15 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:15 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:15 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:15 DEBUG opendrift.models.basemodel:1253: Data needed for 6076 elements
14:09:15 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:15 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 19:00:00 (before)
2023-09-02 20:00:00 (after)
14:09:15 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 19:00:00) in space (linearNDFast)
14:09:15 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:15 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:15 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:15 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:15 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:15 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:15 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3738 (max)
14:09:15 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:15 DEBUG opendrift.models.basemodel:1527: 6076 active elements
14:09:15 DEBUG opendrift.models.basemodel:1538: 59.097772748071776 <- latitude -> 59.1896667868273
14:09:15 DEBUG opendrift.models.basemodel:1543: 10.886577652942332 <- longitude -> 11.052188729098335
14:09:15 DEBUG opendrift.models.basemodel:1548: -15.12403678894043 <- z -> 0.0
14:09:15 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:15 DEBUG opendrift.models.basemodel:836: Lifting 388 elements to seafloor.
14:09:15 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:15 INFO opendrift.models.basemodel:2882: 2023-09-02 19:06:21.121579 - step 175 of 216 - 6076 active elements (0 deactivated)
14:09:15 DEBUG opendrift.models.basemodel:2888: 3924 elements scheduled.
14:09:15 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:15 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:15 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:15 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:15 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:15 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:15 DEBUG opendrift.models.basemodel:1253: Data needed for 6076 elements
14:09:15 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:15 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:15 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:15 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:15 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:15 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:15 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:15 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:15 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:15 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:15 DEBUG opendrift.models.basemodel:1253: Data needed for 6076 elements
14:09:15 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:15 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 19:00:00 (before)
2023-09-02 20:00:00 (after)
14:09:16 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:16 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:16 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:16 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:16 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:16 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:16 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x25x6) for time after (2023-09-02 20:00:00)
14:09:16 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 19:00:00) in space (linearNDFast)
14:09:16 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:16 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 20:00:00) in space (linearNDFast)
14:09:16 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3828 elements, expanding data 1
14:09:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 82 elements, expanding data 2
14:09:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3828 elements, expanding data 1
14:09:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 82 elements, expanding data 2
14:09:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3944 elements, expanding data 1
14:09:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 339 elements, expanding data 2
14:09:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 68 elements, expanding data 3
14:09:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3944 elements, expanding data 1
14:09:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 339 elements, expanding data 2
14:09:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 68 elements, expanding data 3
14:09:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3944 elements, expanding data 1
14:09:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 339 elements, expanding data 2
14:09:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 68 elements, expanding data 3
14:09:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3944 elements, expanding data 1
14:09:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 339 elements, expanding data 2
14:09:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 68 elements, expanding data 3
14:09:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3944 elements, expanding data 1
14:09:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 339 elements, expanding data 2
14:09:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 68 elements, expanding data 3
14:09:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3944 elements, expanding data 1
14:09:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 339 elements, expanding data 2
14:09:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 68 elements, expanding data 3
14:09:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5074 elements, expanding data 1
14:09:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2418 elements, expanding data 2
14:09:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5074 elements, expanding data 1
14:09:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2418 elements, expanding data 2
14:09:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5074 elements, expanding data 1
14:09:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2418 elements, expanding data 2
14:09:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5074 elements, expanding data 1
14:09:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2418 elements, expanding data 2
14:09:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5074 elements, expanding data 1
14:09:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2418 elements, expanding data 2
14:09:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5074 elements, expanding data 1
14:09:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2418 elements, expanding data 2
14:09:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3828 elements, expanding data 1
14:09:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 82 elements, expanding data 2
14:09:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3828 elements, expanding data 1
14:09:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 82 elements, expanding data 2
14:09:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3828 elements, expanding data 1
14:09:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 82 elements, expanding data 2
14:09:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3828 elements, expanding data 1
14:09:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 82 elements, expanding data 2
14:09:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3828 elements, expanding data 1
14:09:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 82 elements, expanding data 2
14:09:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3828 elements, expanding data 1
14:09:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 82 elements, expanding data 2
14:09:16 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 19:00:00, weight 0.89) and
after (2023-09-02 20:00:00, weight 0.11) in time
14:09:16 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.11343292464781 and -58.947821823121124 degrees.
14:09:16 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.11343292464781 and -58.947821823121124 degrees.
14:09:16 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:16 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:16 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:16 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:16 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:16 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:16 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.87138 (min) 1.06873 (max)
14:09:16 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.877639 (min) 0.735649 (max)
14:09:16 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000112668 (min) 0.000671359 (max)
14:09:16 DEBUG opendrift.models.basemodel:1524: x_wind: -2.54316 (min) 11.5859 (max)
14:09:16 DEBUG opendrift.models.basemodel:1524: y_wind: -6.06959 (min) 9.19199 (max)
14:09:16 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:16 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:16 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:16 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:16 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:16 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:16 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:16 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3738 (max)
14:09:16 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:16 DEBUG opendrift.models.basemodel:1527: 6076 active elements
14:09:16 DEBUG opendrift.models.basemodel:1538: 59.097772748071776 <- latitude -> 59.1896667868273
14:09:16 DEBUG opendrift.models.basemodel:1543: 10.886577652942332 <- longitude -> 11.052188729098335
14:09:16 DEBUG opendrift.models.basemodel:1548: -15.12403678894043 <- z -> 0.0
14:09:16 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:16 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:16 DEBUG opendrift.models.physics_methods:1050: min: 0.058705, mean: 3.998058, max: 10.055747
14:09:16 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.058705, mean: 3.998058, max: 10.055747
14:09:16 DEBUG opendrift.models.basemodel:813: 976 elements hit coastline, moving back to water
14:09:16 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:09:16 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:16 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:16 DEBUG opendrift.models.physics_methods:828: Advecting 44 of 6076 elements above 0.100m with wind-sheared ocean current (0.005348 m/s - 0.231787 m/s)
14:09:16 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:16 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:16 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.1251253222800064
14:09:16 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:16 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:16 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:16 DEBUG opendrift.models.oceandrift:582: 664 elements penetrated seafloor, lifting up
14:09:16 DEBUG opendrift.models.oceandrift:600: 59 elements reached seafloor, set to bottom
14:09:16 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
14:09:16 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
14:09:16 DEBUG opendrift.models.oceandrift:582: 558 elements penetrated seafloor, lifting up
14:09:16 DEBUG opendrift.models.oceandrift:600: 59 elements reached seafloor, set to bottom
14:09:16 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
14:09:16 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
14:09:16 DEBUG opendrift.models.oceandrift:582: 530 elements penetrated seafloor, lifting up
14:09:16 DEBUG opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
14:09:16 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
14:09:16 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
14:09:16 DEBUG opendrift.models.oceandrift:582: 514 elements penetrated seafloor, lifting up
14:09:16 DEBUG opendrift.models.oceandrift:600: 52 elements reached seafloor, set to bottom
14:09:16 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
14:09:16 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
14:09:16 DEBUG opendrift.models.oceandrift:582: 515 elements penetrated seafloor, lifting up
14:09:16 DEBUG opendrift.models.oceandrift:600: 59 elements reached seafloor, set to bottom
14:09:16 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
14:09:16 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
14:09:16 DEBUG opendrift.models.oceandrift:582: 476 elements penetrated seafloor, lifting up
14:09:16 DEBUG opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
14:09:16 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
14:09:16 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
14:09:16 DEBUG opendrift.models.oceandrift:582: 463 elements penetrated seafloor, lifting up
14:09:16 DEBUG opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
14:09:16 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
14:09:16 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
14:09:16 DEBUG opendrift.models.oceandrift:582: 468 elements penetrated seafloor, lifting up
14:09:16 DEBUG opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
14:09:16 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
14:09:16 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
14:09:16 DEBUG opendrift.models.oceandrift:582: 456 elements penetrated seafloor, lifting up
14:09:16 DEBUG opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
14:09:16 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
14:09:16 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
14:09:16 DEBUG opendrift.models.oceandrift:582: 490 elements penetrated seafloor, lifting up
14:09:16 DEBUG opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
14:09:16 DEBUG opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
14:09:16 DEBUG opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
14:09:16 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:16 DEBUG opendrift.models.basemodel:2945: 6076 active elements (0 deactivated)
14:09:16 DEBUG opendrift.models.basemodel:1658: to be seeded: 3924, already seeded 6076
14:09:16 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:09:16 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:16 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:16 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:16 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:16 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:16 DEBUG opendrift.models.basemodel:1253: Data needed for 6111 elements
14:09:16 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:16 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 19:00:00 (before)
2023-09-02 20:00:00 (after)
14:09:16 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 19:00:00) in space (linearNDFast)
14:09:16 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:16 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:16 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:16 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:16 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:16 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:16 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4152 (max)
14:09:16 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:16 DEBUG opendrift.models.basemodel:1527: 6111 active elements
14:09:16 DEBUG opendrift.models.basemodel:1538: 59.096218495796435 <- latitude -> 59.189020536125454
14:09:16 DEBUG opendrift.models.basemodel:1543: 10.88860769219471 <- longitude -> 11.052755902251791
14:09:16 DEBUG opendrift.models.basemodel:1548: -15.239581108093262 <- z -> 0.0
14:09:16 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:16 DEBUG opendrift.models.basemodel:836: Lifting 367 elements to seafloor.
14:09:16 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:16 INFO opendrift.models.basemodel:2882: 2023-09-02 19:16:21.121579 - step 176 of 216 - 6111 active elements (0 deactivated)
14:09:16 DEBUG opendrift.models.basemodel:2888: 3889 elements scheduled.
14:09:16 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:16 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:16 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:16 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:16 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:16 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:16 DEBUG opendrift.models.basemodel:1253: Data needed for 6111 elements
14:09:16 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:16 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:16 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:16 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:16 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:16 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:16 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:16 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:16 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:16 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:16 DEBUG opendrift.models.basemodel:1253: Data needed for 6111 elements
14:09:16 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:16 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 19:00:00 (before)
2023-09-02 20:00:00 (after)
14:09:17 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:17 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:17 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:17 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:17 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:17 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:17 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x25x6) for time after (2023-09-02 20:00:00)
14:09:17 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 19:00:00) in space (linearNDFast)
14:09:17 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:17 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 20:00:00) in space (linearNDFast)
14:09:17 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3888 elements, expanding data 1
14:09:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 84 elements, expanding data 2
14:09:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3888 elements, expanding data 1
14:09:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 84 elements, expanding data 2
14:09:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3999 elements, expanding data 1
14:09:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 347 elements, expanding data 2
14:09:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 3
14:09:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3999 elements, expanding data 1
14:09:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 347 elements, expanding data 2
14:09:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 3
14:09:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3999 elements, expanding data 1
14:09:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 347 elements, expanding data 2
14:09:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 3
14:09:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3999 elements, expanding data 1
14:09:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 347 elements, expanding data 2
14:09:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 3
14:09:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3999 elements, expanding data 1
14:09:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 347 elements, expanding data 2
14:09:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 3
14:09:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3999 elements, expanding data 1
14:09:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 347 elements, expanding data 2
14:09:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 3
14:09:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5151 elements, expanding data 1
14:09:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2415 elements, expanding data 2
14:09:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5151 elements, expanding data 1
14:09:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2415 elements, expanding data 2
14:09:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5151 elements, expanding data 1
14:09:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2415 elements, expanding data 2
14:09:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5151 elements, expanding data 1
14:09:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2415 elements, expanding data 2
14:09:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5151 elements, expanding data 1
14:09:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2415 elements, expanding data 2
14:09:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5151 elements, expanding data 1
14:09:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2415 elements, expanding data 2
14:09:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3888 elements, expanding data 1
14:09:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 84 elements, expanding data 2
14:09:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3888 elements, expanding data 1
14:09:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 84 elements, expanding data 2
14:09:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3888 elements, expanding data 1
14:09:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 84 elements, expanding data 2
14:09:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3888 elements, expanding data 1
14:09:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 84 elements, expanding data 2
14:09:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3888 elements, expanding data 1
14:09:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 84 elements, expanding data 2
14:09:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3888 elements, expanding data 1
14:09:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 84 elements, expanding data 2
14:09:17 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 19:00:00, weight 0.73) and
after (2023-09-02 20:00:00, weight 0.27) in time
14:09:17 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.11140287640794 and -58.94725465360766 degrees.
14:09:17 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.11140287640794 and -58.94725465360766 degrees.
14:09:17 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:17 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:17 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:17 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:17 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:17 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:17 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.713647 (min) 1.21143 (max)
14:09:17 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.966104 (min) 0.734457 (max)
14:09:17 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000144891 (min) 0.000793836 (max)
14:09:17 DEBUG opendrift.models.basemodel:1524: x_wind: -2.68688 (min) 12.4991 (max)
14:09:17 DEBUG opendrift.models.basemodel:1524: y_wind: -8.05556 (min) 8.09882 (max)
14:09:17 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:17 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:17 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:17 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:17 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:17 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:17 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:17 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4152 (max)
14:09:17 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:17 DEBUG opendrift.models.basemodel:1527: 6111 active elements
14:09:17 DEBUG opendrift.models.basemodel:1538: 59.096218495796435 <- latitude -> 59.189020536125454
14:09:17 DEBUG opendrift.models.basemodel:1543: 10.88860769219471 <- longitude -> 11.052755902251791
14:09:17 DEBUG opendrift.models.basemodel:1548: -15.224087715148926 <- z -> 0.0
14:09:17 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:17 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:17 DEBUG opendrift.models.physics_methods:1050: min: 0.023620, mean: 3.887338, max: 10.901057
14:09:17 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.023620, mean: 3.887338, max: 10.901057
14:09:17 DEBUG opendrift.models.basemodel:813: 950 elements hit coastline, moving back to water
14:09:17 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
14:09:17 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:17 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:17 DEBUG opendrift.models.physics_methods:828: Advecting 44 of 6111 elements above 0.100m with wind-sheared ocean current (0.004085 m/s - 0.155356 m/s)
14:09:17 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:17 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:17 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.14704545608814237
14:09:17 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:17 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:17 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:17 DEBUG opendrift.models.oceandrift:582: 660 elements penetrated seafloor, lifting up
14:09:17 DEBUG opendrift.models.oceandrift:600: 70 elements reached seafloor, set to bottom
14:09:17 DEBUG opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
14:09:17 DEBUG opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
14:09:17 DEBUG opendrift.models.oceandrift:582: 596 elements penetrated seafloor, lifting up
14:09:17 DEBUG opendrift.models.oceandrift:600: 62 elements reached seafloor, set to bottom
14:09:17 DEBUG opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
14:09:17 DEBUG opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
14:09:17 DEBUG opendrift.models.oceandrift:582: 571 elements penetrated seafloor, lifting up
14:09:17 DEBUG opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
14:09:17 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
14:09:17 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
14:09:17 DEBUG opendrift.models.oceandrift:582: 529 elements penetrated seafloor, lifting up
14:09:17 DEBUG opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
14:09:17 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
14:09:17 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
14:09:17 DEBUG opendrift.models.oceandrift:582: 534 elements penetrated seafloor, lifting up
14:09:17 DEBUG opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
14:09:17 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
14:09:17 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
14:09:17 DEBUG opendrift.models.oceandrift:582: 510 elements penetrated seafloor, lifting up
14:09:17 DEBUG opendrift.models.oceandrift:600: 66 elements reached seafloor, set to bottom
14:09:17 DEBUG opendrift.models.basemodel:836: Lifting 66 elements to seafloor.
14:09:17 DEBUG opendrift.models.sedimentdrift:112: Settling 66 elements at seafloor
14:09:17 DEBUG opendrift.models.oceandrift:582: 495 elements penetrated seafloor, lifting up
14:09:17 DEBUG opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
14:09:17 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
14:09:17 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
14:09:17 DEBUG opendrift.models.oceandrift:582: 508 elements penetrated seafloor, lifting up
14:09:17 DEBUG opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
14:09:17 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
14:09:17 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
14:09:17 DEBUG opendrift.models.oceandrift:582: 502 elements penetrated seafloor, lifting up
14:09:17 DEBUG opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
14:09:17 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
14:09:17 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
14:09:17 DEBUG opendrift.models.oceandrift:582: 482 elements penetrated seafloor, lifting up
14:09:17 DEBUG opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
14:09:17 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
14:09:17 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
14:09:17 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:17 DEBUG opendrift.models.basemodel:2945: 6111 active elements (0 deactivated)
14:09:17 DEBUG opendrift.models.basemodel:1658: to be seeded: 3889, already seeded 6111
14:09:17 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:09:17 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:17 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:17 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:17 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:17 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:17 DEBUG opendrift.models.basemodel:1253: Data needed for 6146 elements
14:09:17 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:17 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 19:00:00 (before)
2023-09-02 20:00:00 (after)
14:09:17 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 19:00:00) in space (linearNDFast)
14:09:17 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:17 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:17 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:17 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:17 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:17 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:17 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.439 (max)
14:09:17 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:17 DEBUG opendrift.models.basemodel:1527: 6146 active elements
14:09:17 DEBUG opendrift.models.basemodel:1538: 59.095972543326226 <- latitude -> 59.18919829844748
14:09:17 DEBUG opendrift.models.basemodel:1543: 10.892011865507097 <- longitude -> 11.051229741389868
14:09:17 DEBUG opendrift.models.basemodel:1548: -15.21408676147461 <- z -> 0.0
14:09:17 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:17 DEBUG opendrift.models.basemodel:836: Lifting 411 elements to seafloor.
14:09:17 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:17 INFO opendrift.models.basemodel:2882: 2023-09-02 19:26:21.121579 - step 177 of 216 - 6146 active elements (0 deactivated)
14:09:17 DEBUG opendrift.models.basemodel:2888: 3854 elements scheduled.
14:09:17 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:17 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:17 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:17 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:17 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:17 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:17 DEBUG opendrift.models.basemodel:1253: Data needed for 6146 elements
14:09:17 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:17 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:17 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:17 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:17 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:17 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:17 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:17 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:17 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:17 DEBUG opendrift.models.basemodel:1253: Data needed for 6146 elements
14:09:17 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:17 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 19:00:00 (before)
2023-09-02 20:00:00 (after)
14:09:18 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:18 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:18 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:18 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:18 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:18 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:18 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x25x6) for time after (2023-09-02 20:00:00)
14:09:18 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 19:00:00) in space (linearNDFast)
14:09:18 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:18 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 20:00:00) in space (linearNDFast)
14:09:18 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3884 elements, expanding data 1
14:09:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 2
14:09:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3884 elements, expanding data 1
14:09:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 2
14:09:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3992 elements, expanding data 1
14:09:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 2
14:09:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 3
14:09:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3992 elements, expanding data 1
14:09:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 2
14:09:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 3
14:09:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3992 elements, expanding data 1
14:09:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 2
14:09:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 3
14:09:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3992 elements, expanding data 1
14:09:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 2
14:09:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 3
14:09:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3992 elements, expanding data 1
14:09:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 2
14:09:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 3
14:09:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3992 elements, expanding data 1
14:09:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 2
14:09:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 3
14:09:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5185 elements, expanding data 1
14:09:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2415 elements, expanding data 2
14:09:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5185 elements, expanding data 1
14:09:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2415 elements, expanding data 2
14:09:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5185 elements, expanding data 1
14:09:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2415 elements, expanding data 2
14:09:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5185 elements, expanding data 1
14:09:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2415 elements, expanding data 2
14:09:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5185 elements, expanding data 1
14:09:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2415 elements, expanding data 2
14:09:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5185 elements, expanding data 1
14:09:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2415 elements, expanding data 2
14:09:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3884 elements, expanding data 1
14:09:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 2
14:09:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3884 elements, expanding data 1
14:09:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 2
14:09:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3884 elements, expanding data 1
14:09:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 2
14:09:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3884 elements, expanding data 1
14:09:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 2
14:09:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3884 elements, expanding data 1
14:09:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 2
14:09:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3884 elements, expanding data 1
14:09:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 2
14:09:18 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 19:00:00, weight 0.56) and
after (2023-09-02 20:00:00, weight 0.44) in time
14:09:18 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.10799870611254 and -58.94878080822099 degrees.
14:09:18 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.10799870611254 and -58.94878080822099 degrees.
14:09:18 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:18 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:18 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:18 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:18 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:18 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:18 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.774682 (min) 1.14986 (max)
14:09:18 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.990248 (min) 0.720369 (max)
14:09:18 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.00011594 (min) 0.000636736 (max)
14:09:18 DEBUG opendrift.models.basemodel:1524: x_wind: -3.48547 (min) 10.9147 (max)
14:09:18 DEBUG opendrift.models.basemodel:1524: y_wind: -7.58278 (min) 8.25688 (max)
14:09:18 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:18 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:18 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:18 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:18 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:18 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:18 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:18 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.439 (max)
14:09:18 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:18 DEBUG opendrift.models.basemodel:1527: 6146 active elements
14:09:18 DEBUG opendrift.models.basemodel:1538: 59.095972543326226 <- latitude -> 59.18919829844748
14:09:18 DEBUG opendrift.models.basemodel:1543: 10.892011865507097 <- longitude -> 11.051229741389868
14:09:18 DEBUG opendrift.models.basemodel:1548: -15.21408676147461 <- z -> 0.0
14:09:18 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:18 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:18 DEBUG opendrift.models.physics_methods:1050: min: 0.099906, mean: 3.744765, max: 9.365758
14:09:18 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.099906, mean: 3.744765, max: 9.365758
14:09:18 DEBUG opendrift.models.basemodel:813: 965 elements hit coastline, moving back to water
14:09:18 DEBUG opendrift.models.basemodel:836: Lifting 184 elements to seafloor.
14:09:18 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:18 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:18 DEBUG opendrift.models.physics_methods:828: Advecting 42 of 6146 elements above 0.100m with wind-sheared ocean current (0.000859 m/s - 0.147777 m/s)
14:09:18 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:18 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:18 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10854366114624023
14:09:18 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:18 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:18 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:18 DEBUG opendrift.models.oceandrift:582: 703 elements penetrated seafloor, lifting up
14:09:18 DEBUG opendrift.models.oceandrift:600: 59 elements reached seafloor, set to bottom
14:09:18 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
14:09:18 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
14:09:18 DEBUG opendrift.models.oceandrift:582: 547 elements penetrated seafloor, lifting up
14:09:18 DEBUG opendrift.models.oceandrift:600: 63 elements reached seafloor, set to bottom
14:09:18 DEBUG opendrift.models.basemodel:836: Lifting 63 elements to seafloor.
14:09:18 DEBUG opendrift.models.sedimentdrift:112: Settling 63 elements at seafloor
14:09:18 DEBUG opendrift.models.oceandrift:582: 555 elements penetrated seafloor, lifting up
14:09:18 DEBUG opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
14:09:18 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
14:09:18 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
14:09:18 DEBUG opendrift.models.oceandrift:582: 547 elements penetrated seafloor, lifting up
14:09:18 DEBUG opendrift.models.oceandrift:600: 70 elements reached seafloor, set to bottom
14:09:18 DEBUG opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
14:09:18 DEBUG opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
14:09:18 DEBUG opendrift.models.oceandrift:582: 494 elements penetrated seafloor, lifting up
14:09:18 DEBUG opendrift.models.oceandrift:600: 64 elements reached seafloor, set to bottom
14:09:18 DEBUG opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
14:09:18 DEBUG opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
14:09:18 DEBUG opendrift.models.oceandrift:582: 523 elements penetrated seafloor, lifting up
14:09:18 DEBUG opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
14:09:18 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
14:09:18 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
14:09:18 DEBUG opendrift.models.oceandrift:582: 457 elements penetrated seafloor, lifting up
14:09:18 DEBUG opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
14:09:18 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
14:09:18 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
14:09:18 DEBUG opendrift.models.oceandrift:582: 492 elements penetrated seafloor, lifting up
14:09:18 DEBUG opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
14:09:18 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
14:09:18 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
14:09:18 DEBUG opendrift.models.oceandrift:582: 489 elements penetrated seafloor, lifting up
14:09:18 DEBUG opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
14:09:18 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
14:09:18 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
14:09:18 DEBUG opendrift.models.oceandrift:582: 488 elements penetrated seafloor, lifting up
14:09:18 DEBUG opendrift.models.oceandrift:600: 60 elements reached seafloor, set to bottom
14:09:18 DEBUG opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
14:09:18 DEBUG opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
14:09:18 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:18 DEBUG opendrift.models.basemodel:2945: 6146 active elements (0 deactivated)
14:09:18 DEBUG opendrift.models.basemodel:1658: to be seeded: 3854, already seeded 6146
14:09:18 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:09:18 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:18 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:18 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:18 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:18 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:18 DEBUG opendrift.models.basemodel:1253: Data needed for 6180 elements
14:09:18 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:18 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 19:00:00 (before)
2023-09-02 20:00:00 (after)
14:09:18 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 19:00:00) in space (linearNDFast)
14:09:18 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:18 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:18 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:18 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:18 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:18 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:18 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3688 (max)
14:09:18 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:18 DEBUG opendrift.models.basemodel:1527: 6180 active elements
14:09:18 DEBUG opendrift.models.basemodel:1538: 59.09597254332622 <- latitude -> 59.18823823686702
14:09:18 DEBUG opendrift.models.basemodel:1543: 10.89051181574326 <- longitude -> 11.048679092534368
14:09:18 DEBUG opendrift.models.basemodel:1548: -15.140746116638184 <- z -> 0.0
14:09:18 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:18 DEBUG opendrift.models.basemodel:836: Lifting 400 elements to seafloor.
14:09:18 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:18 INFO opendrift.models.basemodel:2882: 2023-09-02 19:36:21.121579 - step 178 of 216 - 6180 active elements (0 deactivated)
14:09:18 DEBUG opendrift.models.basemodel:2888: 3820 elements scheduled.
14:09:18 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:18 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:18 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:18 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:18 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:18 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:18 DEBUG opendrift.models.basemodel:1253: Data needed for 6180 elements
14:09:18 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:18 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:18 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:18 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:18 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:18 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:18 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:18 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:18 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:18 DEBUG opendrift.models.basemodel:1253: Data needed for 6180 elements
14:09:18 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:18 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 19:00:00 (before)
2023-09-02 20:00:00 (after)
14:09:19 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:19 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:19 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:19 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:19 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:19 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:19 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x25x6) for time after (2023-09-02 20:00:00)
14:09:19 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 19:00:00) in space (linearNDFast)
14:09:19 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:19 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 20:00:00) in space (linearNDFast)
14:09:19 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3892 elements, expanding data 1
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 2
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3892 elements, expanding data 1
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 2
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4000 elements, expanding data 1
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 345 elements, expanding data 2
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 3
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4000 elements, expanding data 1
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 345 elements, expanding data 2
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 3
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4000 elements, expanding data 1
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 345 elements, expanding data 2
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 3
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4000 elements, expanding data 1
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 345 elements, expanding data 2
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 3
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4000 elements, expanding data 1
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 345 elements, expanding data 2
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 3
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4000 elements, expanding data 1
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 345 elements, expanding data 2
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 3
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5216 elements, expanding data 1
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2415 elements, expanding data 2
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5216 elements, expanding data 1
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2415 elements, expanding data 2
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5216 elements, expanding data 1
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2415 elements, expanding data 2
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5216 elements, expanding data 1
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2415 elements, expanding data 2
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5216 elements, expanding data 1
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2415 elements, expanding data 2
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5216 elements, expanding data 1
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2415 elements, expanding data 2
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3892 elements, expanding data 1
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 2
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3892 elements, expanding data 1
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 2
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3892 elements, expanding data 1
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 2
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3892 elements, expanding data 1
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 2
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3892 elements, expanding data 1
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 2
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3892 elements, expanding data 1
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 2
14:09:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:19 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 19:00:00, weight 0.39) and
after (2023-09-02 20:00:00, weight 0.61) in time
14:09:19 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.10949874888895 and -58.95133146471126 degrees.
14:09:19 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.10949874888895 and -58.95133146471126 degrees.
14:09:19 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:19 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:19 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:19 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:19 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:19 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:19 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.862512 (min) 1.29433 (max)
14:09:19 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.973983 (min) 0.802978 (max)
14:09:19 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000148192 (min) 0.000753483 (max)
14:09:19 DEBUG opendrift.models.basemodel:1524: x_wind: -3.87843 (min) 11.0701 (max)
14:09:19 DEBUG opendrift.models.basemodel:1524: y_wind: -6.66254 (min) 8.58767 (max)
14:09:19 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:19 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:19 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:19 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:19 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:19 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:19 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:19 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3688 (max)
14:09:19 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:19 DEBUG opendrift.models.basemodel:1527: 6180 active elements
14:09:19 DEBUG opendrift.models.basemodel:1538: 59.09597254332622 <- latitude -> 59.18823823686702
14:09:19 DEBUG opendrift.models.basemodel:1543: 10.89051181574326 <- longitude -> 11.048679092534368
14:09:19 DEBUG opendrift.models.basemodel:1548: -15.140746116638184 <- z -> 0.0
14:09:19 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:19 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:19 DEBUG opendrift.models.physics_methods:1050: min: 0.008689, mean: 3.592085, max: 9.907701
14:09:19 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.008689, mean: 3.592085, max: 9.907701
14:09:19 DEBUG opendrift.models.basemodel:813: 926 elements hit coastline, moving back to water
14:09:19 DEBUG opendrift.models.basemodel:836: Lifting 149 elements to seafloor.
14:09:19 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:19 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:19 DEBUG opendrift.models.physics_methods:828: Advecting 38 of 6180 elements above 0.100m with wind-sheared ocean current (0.003608 m/s - 0.174792 m/s)
14:09:19 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:19 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:19 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.12146821487863539
14:09:19 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:19 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:19 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:19 DEBUG opendrift.models.oceandrift:582: 698 elements penetrated seafloor, lifting up
14:09:19 DEBUG opendrift.models.oceandrift:600: 82 elements reached seafloor, set to bottom
14:09:19 DEBUG opendrift.models.basemodel:836: Lifting 82 elements to seafloor.
14:09:19 DEBUG opendrift.models.sedimentdrift:112: Settling 82 elements at seafloor
14:09:19 DEBUG opendrift.models.oceandrift:582: 534 elements penetrated seafloor, lifting up
14:09:19 DEBUG opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
14:09:19 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
14:09:19 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
14:09:19 DEBUG opendrift.models.oceandrift:582: 528 elements penetrated seafloor, lifting up
14:09:19 DEBUG opendrift.models.oceandrift:600: 82 elements reached seafloor, set to bottom
14:09:19 DEBUG opendrift.models.basemodel:836: Lifting 82 elements to seafloor.
14:09:19 DEBUG opendrift.models.sedimentdrift:112: Settling 82 elements at seafloor
14:09:19 DEBUG opendrift.models.oceandrift:582: 512 elements penetrated seafloor, lifting up
14:09:19 DEBUG opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
14:09:19 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
14:09:19 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
14:09:19 DEBUG opendrift.models.oceandrift:582: 493 elements penetrated seafloor, lifting up
14:09:19 DEBUG opendrift.models.oceandrift:600: 56 elements reached seafloor, set to bottom
14:09:19 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
14:09:19 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
14:09:19 DEBUG opendrift.models.oceandrift:582: 454 elements penetrated seafloor, lifting up
14:09:19 DEBUG opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
14:09:19 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
14:09:19 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
14:09:19 DEBUG opendrift.models.oceandrift:582: 476 elements penetrated seafloor, lifting up
14:09:19 DEBUG opendrift.models.oceandrift:600: 56 elements reached seafloor, set to bottom
14:09:19 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
14:09:19 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
14:09:19 DEBUG opendrift.models.oceandrift:582: 481 elements penetrated seafloor, lifting up
14:09:19 DEBUG opendrift.models.oceandrift:600: 67 elements reached seafloor, set to bottom
14:09:19 DEBUG opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
14:09:19 DEBUG opendrift.models.sedimentdrift:112: Settling 67 elements at seafloor
14:09:19 DEBUG opendrift.models.oceandrift:582: 441 elements penetrated seafloor, lifting up
14:09:19 DEBUG opendrift.models.oceandrift:600: 62 elements reached seafloor, set to bottom
14:09:19 DEBUG opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
14:09:19 DEBUG opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
14:09:19 DEBUG opendrift.models.oceandrift:582: 444 elements penetrated seafloor, lifting up
14:09:19 DEBUG opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
14:09:19 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
14:09:19 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
14:09:19 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:19 DEBUG opendrift.models.basemodel:2945: 6180 active elements (0 deactivated)
14:09:19 DEBUG opendrift.models.basemodel:1658: to be seeded: 3820, already seeded 6180
14:09:19 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:09:19 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:19 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:19 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:19 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:19 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:19 DEBUG opendrift.models.basemodel:1253: Data needed for 6215 elements
14:09:19 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:19 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 19:00:00 (before)
2023-09-02 20:00:00 (after)
14:09:19 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 19:00:00) in space (linearNDFast)
14:09:19 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:19 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:19 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:19 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:19 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:19 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:19 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3827 (max)
14:09:19 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:19 DEBUG opendrift.models.basemodel:1527: 6215 active elements
14:09:19 DEBUG opendrift.models.basemodel:1538: 59.095972543326226 <- latitude -> 59.189045028060235
14:09:19 DEBUG opendrift.models.basemodel:1543: 10.895344658226529 <- longitude -> 11.047402118954787
14:09:19 DEBUG opendrift.models.basemodel:1548: -15.130746116638184 <- z -> 0.0
14:09:19 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:19 DEBUG opendrift.models.basemodel:836: Lifting 435 elements to seafloor.
14:09:19 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:19 INFO opendrift.models.basemodel:2882: 2023-09-02 19:46:21.121579 - step 179 of 216 - 6215 active elements (0 deactivated)
14:09:19 DEBUG opendrift.models.basemodel:2888: 3785 elements scheduled.
14:09:19 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:19 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:19 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:19 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:19 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:19 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:19 DEBUG opendrift.models.basemodel:1253: Data needed for 6215 elements
14:09:19 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:19 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:19 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:19 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:19 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:19 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:19 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:19 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:19 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:19 DEBUG opendrift.models.basemodel:1253: Data needed for 6215 elements
14:09:19 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:19 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 19:00:00 (before)
2023-09-02 20:00:00 (after)
14:09:20 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:20 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:20 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:20 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:20 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:20 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:20 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x25x6) for time after (2023-09-02 20:00:00)
14:09:20 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 19:00:00) in space (linearNDFast)
14:09:20 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:20 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 20:00:00) in space (linearNDFast)
14:09:20 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3951 elements, expanding data 1
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 2
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3951 elements, expanding data 1
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 2
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4054 elements, expanding data 1
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 361 elements, expanding data 2
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 3
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4054 elements, expanding data 1
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 361 elements, expanding data 2
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 3
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4054 elements, expanding data 1
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 361 elements, expanding data 2
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 3
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4054 elements, expanding data 1
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 361 elements, expanding data 2
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 3
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4054 elements, expanding data 1
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 361 elements, expanding data 2
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 3
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4054 elements, expanding data 1
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 361 elements, expanding data 2
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 3
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5221 elements, expanding data 1
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2415 elements, expanding data 2
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5221 elements, expanding data 1
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2415 elements, expanding data 2
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5221 elements, expanding data 1
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2415 elements, expanding data 2
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5221 elements, expanding data 1
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2415 elements, expanding data 2
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5221 elements, expanding data 1
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2415 elements, expanding data 2
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5221 elements, expanding data 1
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2415 elements, expanding data 2
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3951 elements, expanding data 1
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 2
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3951 elements, expanding data 1
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 2
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3951 elements, expanding data 1
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 2
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3951 elements, expanding data 1
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 2
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3951 elements, expanding data 1
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 2
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3951 elements, expanding data 1
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 2
14:09:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:09:20 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 19:00:00, weight 0.23) and
after (2023-09-02 20:00:00, weight 0.77) in time
14:09:20 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.10466590517696 and -58.952608432693424 degrees.
14:09:20 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.10466590517696 and -58.952608432693424 degrees.
14:09:20 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:20 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:20 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:20 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:20 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:20 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:20 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.848803 (min) 1.2075 (max)
14:09:20 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.984063 (min) 0.770232 (max)
14:09:20 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000140345 (min) 0.000713973 (max)
14:09:20 DEBUG opendrift.models.basemodel:1524: x_wind: -3.59883 (min) 10.8188 (max)
14:09:20 DEBUG opendrift.models.basemodel:1524: y_wind: -6.80975 (min) 7.9958 (max)
14:09:20 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:20 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:20 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:20 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:20 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:20 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:20 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:20 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3827 (max)
14:09:20 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:20 DEBUG opendrift.models.basemodel:1527: 6215 active elements
14:09:20 DEBUG opendrift.models.basemodel:1538: 59.095972543326226 <- latitude -> 59.189045028060235
14:09:20 DEBUG opendrift.models.basemodel:1543: 10.895344658226529 <- longitude -> 11.047402118954787
14:09:20 DEBUG opendrift.models.basemodel:1548: -15.130746116638184 <- z -> 0.0
14:09:20 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:20 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:20 DEBUG opendrift.models.physics_methods:1050: min: 0.099249, mean: 3.516652, max: 10.026720
14:09:20 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.099249, mean: 3.516652, max: 10.026720
14:09:20 DEBUG opendrift.models.basemodel:813: 948 elements hit coastline, moving back to water
14:09:20 DEBUG opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
14:09:20 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:20 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:20 DEBUG opendrift.models.physics_methods:828: Advecting 36 of 6215 elements above 0.100m with wind-sheared ocean current (0.007451 m/s - 0.177210 m/s)
14:09:20 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:20 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:20 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.12440401203163146
14:09:20 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:20 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:20 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:20 DEBUG opendrift.models.oceandrift:582: 728 elements penetrated seafloor, lifting up
14:09:20 DEBUG opendrift.models.oceandrift:600: 94 elements reached seafloor, set to bottom
14:09:20 DEBUG opendrift.models.basemodel:836: Lifting 94 elements to seafloor.
14:09:20 DEBUG opendrift.models.sedimentdrift:112: Settling 94 elements at seafloor
14:09:20 DEBUG opendrift.models.oceandrift:582: 563 elements penetrated seafloor, lifting up
14:09:20 DEBUG opendrift.models.oceandrift:600: 67 elements reached seafloor, set to bottom
14:09:20 DEBUG opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
14:09:20 DEBUG opendrift.models.sedimentdrift:112: Settling 67 elements at seafloor
14:09:20 DEBUG opendrift.models.oceandrift:582: 544 elements penetrated seafloor, lifting up
14:09:20 DEBUG opendrift.models.oceandrift:600: 66 elements reached seafloor, set to bottom
14:09:20 DEBUG opendrift.models.basemodel:836: Lifting 66 elements to seafloor.
14:09:20 DEBUG opendrift.models.sedimentdrift:112: Settling 66 elements at seafloor
14:09:20 DEBUG opendrift.models.oceandrift:582: 485 elements penetrated seafloor, lifting up
14:09:20 DEBUG opendrift.models.oceandrift:600: 66 elements reached seafloor, set to bottom
14:09:20 DEBUG opendrift.models.basemodel:836: Lifting 66 elements to seafloor.
14:09:20 DEBUG opendrift.models.sedimentdrift:112: Settling 66 elements at seafloor
14:09:20 DEBUG opendrift.models.oceandrift:582: 498 elements penetrated seafloor, lifting up
14:09:20 DEBUG opendrift.models.oceandrift:600: 67 elements reached seafloor, set to bottom
14:09:20 DEBUG opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
14:09:20 DEBUG opendrift.models.sedimentdrift:112: Settling 67 elements at seafloor
14:09:20 DEBUG opendrift.models.oceandrift:582: 444 elements penetrated seafloor, lifting up
14:09:20 DEBUG opendrift.models.oceandrift:600: 60 elements reached seafloor, set to bottom
14:09:20 DEBUG opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
14:09:20 DEBUG opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
14:09:20 DEBUG opendrift.models.oceandrift:582: 459 elements penetrated seafloor, lifting up
14:09:20 DEBUG opendrift.models.oceandrift:600: 62 elements reached seafloor, set to bottom
14:09:20 DEBUG opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
14:09:20 DEBUG opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
14:09:20 DEBUG opendrift.models.oceandrift:582: 418 elements penetrated seafloor, lifting up
14:09:20 DEBUG opendrift.models.oceandrift:600: 59 elements reached seafloor, set to bottom
14:09:20 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
14:09:20 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
14:09:20 DEBUG opendrift.models.oceandrift:582: 426 elements penetrated seafloor, lifting up
14:09:20 DEBUG opendrift.models.oceandrift:600: 69 elements reached seafloor, set to bottom
14:09:20 DEBUG opendrift.models.basemodel:836: Lifting 69 elements to seafloor.
14:09:20 DEBUG opendrift.models.sedimentdrift:112: Settling 69 elements at seafloor
14:09:20 DEBUG opendrift.models.oceandrift:582: 418 elements penetrated seafloor, lifting up
14:09:20 DEBUG opendrift.models.oceandrift:600: 70 elements reached seafloor, set to bottom
14:09:20 DEBUG opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
14:09:20 DEBUG opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
14:09:20 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:20 DEBUG opendrift.models.basemodel:2945: 6215 active elements (0 deactivated)
14:09:20 DEBUG opendrift.models.basemodel:1658: to be seeded: 3785, already seeded 6215
14:09:20 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:09:20 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:20 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:20 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:20 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:20 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:20 DEBUG opendrift.models.basemodel:1253: Data needed for 6250 elements
14:09:20 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:20 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 19:00:00 (before)
2023-09-02 20:00:00 (after)
14:09:20 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 19:00:00) in space (linearNDFast)
14:09:20 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:20 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:20 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:20 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:20 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:20 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:20 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4087 (max)
14:09:20 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:20 DEBUG opendrift.models.basemodel:1527: 6250 active elements
14:09:20 DEBUG opendrift.models.basemodel:1538: 59.095972543326226 <- latitude -> 59.18985846126429
14:09:20 DEBUG opendrift.models.basemodel:1543: 10.895940413153253 <- longitude -> 11.049962214120532
14:09:20 DEBUG opendrift.models.basemodel:1548: -15.178887756872133 <- z -> 0.0
14:09:20 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:20 DEBUG opendrift.models.basemodel:836: Lifting 463 elements to seafloor.
14:09:20 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:20 INFO opendrift.models.basemodel:2882: 2023-09-02 19:56:21.121579 - step 180 of 216 - 6250 active elements (0 deactivated)
14:09:20 DEBUG opendrift.models.basemodel:2888: 3750 elements scheduled.
14:09:20 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:20 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:20 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:20 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:20 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:20 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:20 DEBUG opendrift.models.basemodel:1253: Data needed for 6250 elements
14:09:20 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:20 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:20 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:20 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:20 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:20 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:20 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:20 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:20 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:20 DEBUG opendrift.models.basemodel:1253: Data needed for 6250 elements
14:09:20 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:20 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 19:00:00 (before)
2023-09-02 20:00:00 (after)
14:09:21 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:21 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:21 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:21 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:21 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:21 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:21 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x24x6) for time after (2023-09-02 20:00:00)
14:09:21 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 19:00:00) in space (linearNDFast)
14:09:21 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:21 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 20:00:00) in space (linearNDFast)
14:09:21 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3958 elements, expanding data 1
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 80 elements, expanding data 2
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3958 elements, expanding data 1
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 80 elements, expanding data 2
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4066 elements, expanding data 1
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 368 elements, expanding data 2
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 3
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4066 elements, expanding data 1
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 368 elements, expanding data 2
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 3
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4066 elements, expanding data 1
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 368 elements, expanding data 2
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 3
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4066 elements, expanding data 1
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 368 elements, expanding data 2
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 3
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4066 elements, expanding data 1
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 368 elements, expanding data 2
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 3
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4066 elements, expanding data 1
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 368 elements, expanding data 2
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 3
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5274 elements, expanding data 1
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2418 elements, expanding data 2
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5274 elements, expanding data 1
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2418 elements, expanding data 2
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5274 elements, expanding data 1
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2418 elements, expanding data 2
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5274 elements, expanding data 1
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2418 elements, expanding data 2
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5274 elements, expanding data 1
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2418 elements, expanding data 2
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5274 elements, expanding data 1
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2418 elements, expanding data 2
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3958 elements, expanding data 1
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 80 elements, expanding data 2
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3958 elements, expanding data 1
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 80 elements, expanding data 2
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3958 elements, expanding data 1
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 80 elements, expanding data 2
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3958 elements, expanding data 1
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 80 elements, expanding data 2
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3958 elements, expanding data 1
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 80 elements, expanding data 2
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3958 elements, expanding data 1
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 80 elements, expanding data 2
14:09:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:21 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 19:00:00, weight 0.06) and
after (2023-09-02 20:00:00, weight 0.94) in time
14:09:21 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.104070146804176 and -58.95004833728104 degrees.
14:09:21 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.104070146804176 and -58.95004833728104 degrees.
14:09:21 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:21 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:21 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:21 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:21 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:21 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:21 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.808012 (min) 1.16641 (max)
14:09:21 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.11819 (min) 0.798072 (max)
14:09:21 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.0001277 (min) 0.000671513 (max)
14:09:21 DEBUG opendrift.models.basemodel:1524: x_wind: -4.70313 (min) 11.1913 (max)
14:09:21 DEBUG opendrift.models.basemodel:1524: y_wind: -6.65056 (min) 7.97342 (max)
14:09:21 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:21 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:21 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:21 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:21 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:21 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:21 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:21 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4087 (max)
14:09:21 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:21 DEBUG opendrift.models.basemodel:1527: 6250 active elements
14:09:21 DEBUG opendrift.models.basemodel:1538: 59.095972543326226 <- latitude -> 59.18985846126429
14:09:21 DEBUG opendrift.models.basemodel:1543: 10.895940413153253 <- longitude -> 11.049962214120532
14:09:21 DEBUG opendrift.models.basemodel:1548: -15.178887756872133 <- z -> 0.0
14:09:21 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:21 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:21 DEBUG opendrift.models.physics_methods:1050: min: 0.168313, mean: 3.355083, max: 9.654522
14:09:21 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.168313, mean: 3.355083, max: 9.654522
14:09:21 DEBUG opendrift.models.basemodel:813: 988 elements hit coastline, moving back to water
14:09:21 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:09:21 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:21 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:21 DEBUG opendrift.models.physics_methods:828: Advecting 37 of 6250 elements above 0.100m with wind-sheared ocean current (0.000086 m/s - 0.174159 m/s)
14:09:21 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:21 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:21 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.11533982317789077
14:09:21 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:21 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:21 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:21 DEBUG opendrift.models.oceandrift:582: 686 elements penetrated seafloor, lifting up
14:09:21 DEBUG opendrift.models.oceandrift:600: 69 elements reached seafloor, set to bottom
14:09:21 DEBUG opendrift.models.basemodel:836: Lifting 69 elements to seafloor.
14:09:21 DEBUG opendrift.models.sedimentdrift:112: Settling 69 elements at seafloor
14:09:21 DEBUG opendrift.models.oceandrift:582: 515 elements penetrated seafloor, lifting up
14:09:21 DEBUG opendrift.models.oceandrift:600: 75 elements reached seafloor, set to bottom
14:09:21 DEBUG opendrift.models.basemodel:836: Lifting 75 elements to seafloor.
14:09:21 DEBUG opendrift.models.sedimentdrift:112: Settling 75 elements at seafloor
14:09:21 DEBUG opendrift.models.oceandrift:582: 497 elements penetrated seafloor, lifting up
14:09:21 DEBUG opendrift.models.oceandrift:600: 60 elements reached seafloor, set to bottom
14:09:21 DEBUG opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
14:09:21 DEBUG opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
14:09:21 DEBUG opendrift.models.oceandrift:582: 499 elements penetrated seafloor, lifting up
14:09:21 DEBUG opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
14:09:21 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
14:09:21 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
14:09:21 DEBUG opendrift.models.oceandrift:582: 462 elements penetrated seafloor, lifting up
14:09:21 DEBUG opendrift.models.oceandrift:600: 60 elements reached seafloor, set to bottom
14:09:21 DEBUG opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
14:09:21 DEBUG opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
14:09:21 DEBUG opendrift.models.oceandrift:582: 441 elements penetrated seafloor, lifting up
14:09:21 DEBUG opendrift.models.oceandrift:600: 59 elements reached seafloor, set to bottom
14:09:21 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
14:09:21 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
14:09:21 DEBUG opendrift.models.oceandrift:582: 428 elements penetrated seafloor, lifting up
14:09:21 DEBUG opendrift.models.oceandrift:600: 59 elements reached seafloor, set to bottom
14:09:21 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
14:09:21 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
14:09:21 DEBUG opendrift.models.oceandrift:582: 404 elements penetrated seafloor, lifting up
14:09:21 DEBUG opendrift.models.oceandrift:600: 60 elements reached seafloor, set to bottom
14:09:21 DEBUG opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
14:09:21 DEBUG opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
14:09:21 DEBUG opendrift.models.oceandrift:582: 404 elements penetrated seafloor, lifting up
14:09:21 DEBUG opendrift.models.oceandrift:600: 56 elements reached seafloor, set to bottom
14:09:21 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
14:09:21 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
14:09:21 DEBUG opendrift.models.oceandrift:582: 405 elements penetrated seafloor, lifting up
14:09:21 DEBUG opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
14:09:21 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
14:09:21 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
14:09:21 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:21 DEBUG opendrift.models.basemodel:2945: 6250 active elements (0 deactivated)
14:09:21 DEBUG opendrift.models.basemodel:1658: to be seeded: 3750, already seeded 6250
14:09:21 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:09:21 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:21 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:21 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:21 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:21 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:21 DEBUG opendrift.models.basemodel:1253: Data needed for 6285 elements
14:09:21 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:21 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 20:00:00 (before)
2023-09-02 21:00:00 (after)
14:09:21 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 20:00:00) in space (linearNDFast)
14:09:21 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:21 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:21 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:21 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:21 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:21 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:21 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3965 (max)
14:09:21 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:21 DEBUG opendrift.models.basemodel:1527: 6285 active elements
14:09:21 DEBUG opendrift.models.basemodel:1538: 59.094426550897936 <- latitude -> 59.189624471851225
14:09:21 DEBUG opendrift.models.basemodel:1543: 10.895940413153253 <- longitude -> 11.049362257190003
14:09:21 DEBUG opendrift.models.basemodel:1548: -15.147177925109863 <- z -> 0.0
14:09:21 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:21 DEBUG opendrift.models.basemodel:836: Lifting 402 elements to seafloor.
14:09:21 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:21 INFO opendrift.models.basemodel:2882: 2023-09-02 20:06:21.121579 - step 181 of 216 - 6285 active elements (0 deactivated)
14:09:21 DEBUG opendrift.models.basemodel:2888: 3715 elements scheduled.
14:09:21 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:21 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:21 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:21 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:21 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:21 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:21 DEBUG opendrift.models.basemodel:1253: Data needed for 6285 elements
14:09:21 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:21 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:21 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:21 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:21 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:21 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:21 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:21 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:21 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:21 DEBUG opendrift.models.basemodel:1253: Data needed for 6285 elements
14:09:21 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:21 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 20:00:00 (before)
2023-09-02 21:00:00 (after)
14:09:22 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:22 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:22 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:22 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:22 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:22 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:22 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x24x6) for time after (2023-09-02 21:00:00)
14:09:22 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 20:00:00) in space (linearNDFast)
14:09:22 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:22 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 21:00:00) in space (linearNDFast)
14:09:22 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3989 elements, expanding data 1
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 2
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3989 elements, expanding data 1
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 2
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4100 elements, expanding data 1
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 364 elements, expanding data 2
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 3
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4100 elements, expanding data 1
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 364 elements, expanding data 2
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 3
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4100 elements, expanding data 1
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 364 elements, expanding data 2
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 3
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4100 elements, expanding data 1
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 364 elements, expanding data 2
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 3
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4100 elements, expanding data 1
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 364 elements, expanding data 2
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 3
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4100 elements, expanding data 1
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 364 elements, expanding data 2
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 3
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5294 elements, expanding data 1
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2426 elements, expanding data 2
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5294 elements, expanding data 1
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2426 elements, expanding data 2
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5294 elements, expanding data 1
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2426 elements, expanding data 2
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5294 elements, expanding data 1
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2426 elements, expanding data 2
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5294 elements, expanding data 1
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2426 elements, expanding data 2
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5294 elements, expanding data 1
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2426 elements, expanding data 2
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3989 elements, expanding data 1
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 2
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3989 elements, expanding data 1
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 2
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3989 elements, expanding data 1
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 2
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3989 elements, expanding data 1
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 2
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3989 elements, expanding data 1
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 2
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3989 elements, expanding data 1
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 2
14:09:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:22 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 20:00:00, weight 0.89) and
after (2023-09-02 21:00:00, weight 0.11) in time
14:09:22 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.104070146804176 and -58.950648294466454 degrees.
14:09:22 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.104070146804176 and -58.950648294466454 degrees.
14:09:22 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:22 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:22 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:22 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:22 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:22 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:22 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.865995 (min) 1.11318 (max)
14:09:22 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.87495 (min) 0.789827 (max)
14:09:22 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000150586 (min) 0.000681652 (max)
14:09:22 DEBUG opendrift.models.basemodel:1524: x_wind: -6.01135 (min) 9.94444 (max)
14:09:22 DEBUG opendrift.models.basemodel:1524: y_wind: -6.83815 (min) 7.01765 (max)
14:09:22 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:22 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:22 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:22 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:22 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:22 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:22 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:22 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3965 (max)
14:09:22 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:22 DEBUG opendrift.models.basemodel:1527: 6285 active elements
14:09:22 DEBUG opendrift.models.basemodel:1538: 59.094426550897936 <- latitude -> 59.189624471851225
14:09:22 DEBUG opendrift.models.basemodel:1543: 10.895940413153253 <- longitude -> 11.049362257190003
14:09:22 DEBUG opendrift.models.basemodel:1548: -15.147177925109863 <- z -> 0.0
14:09:22 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:22 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:22 DEBUG opendrift.models.physics_methods:1050: min: 0.025208, mean: 3.179200, max: 9.267833
14:09:22 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.025208, mean: 3.179200, max: 9.267833
14:09:22 DEBUG opendrift.models.basemodel:813: 947 elements hit coastline, moving back to water
14:09:22 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:09:22 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:22 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:22 DEBUG opendrift.models.physics_methods:828: Advecting 39 of 6285 elements above 0.100m with wind-sheared ocean current (0.004425 m/s - 0.200043 m/s)
14:09:22 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:22 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:22 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10628583030183791
14:09:22 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:22 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:22 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:22 DEBUG opendrift.models.oceandrift:582: 667 elements penetrated seafloor, lifting up
14:09:22 DEBUG opendrift.models.oceandrift:600: 72 elements reached seafloor, set to bottom
14:09:22 DEBUG opendrift.models.basemodel:836: Lifting 72 elements to seafloor.
14:09:22 DEBUG opendrift.models.sedimentdrift:112: Settling 72 elements at seafloor
14:09:22 DEBUG opendrift.models.oceandrift:582: 524 elements penetrated seafloor, lifting up
14:09:22 DEBUG opendrift.models.oceandrift:600: 65 elements reached seafloor, set to bottom
14:09:22 DEBUG opendrift.models.basemodel:836: Lifting 65 elements to seafloor.
14:09:22 DEBUG opendrift.models.sedimentdrift:112: Settling 65 elements at seafloor
14:09:22 DEBUG opendrift.models.oceandrift:582: 480 elements penetrated seafloor, lifting up
14:09:22 DEBUG opendrift.models.oceandrift:600: 77 elements reached seafloor, set to bottom
14:09:22 DEBUG opendrift.models.basemodel:836: Lifting 77 elements to seafloor.
14:09:22 DEBUG opendrift.models.sedimentdrift:112: Settling 77 elements at seafloor
14:09:22 DEBUG opendrift.models.oceandrift:582: 485 elements penetrated seafloor, lifting up
14:09:22 DEBUG opendrift.models.oceandrift:600: 70 elements reached seafloor, set to bottom
14:09:22 DEBUG opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
14:09:22 DEBUG opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
14:09:22 DEBUG opendrift.models.oceandrift:582: 440 elements penetrated seafloor, lifting up
14:09:22 DEBUG opendrift.models.oceandrift:600: 70 elements reached seafloor, set to bottom
14:09:22 DEBUG opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
14:09:22 DEBUG opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
14:09:22 DEBUG opendrift.models.oceandrift:582: 487 elements penetrated seafloor, lifting up
14:09:22 DEBUG opendrift.models.oceandrift:600: 67 elements reached seafloor, set to bottom
14:09:22 DEBUG opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
14:09:22 DEBUG opendrift.models.sedimentdrift:112: Settling 67 elements at seafloor
14:09:22 DEBUG opendrift.models.oceandrift:582: 407 elements penetrated seafloor, lifting up
14:09:22 DEBUG opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
14:09:22 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
14:09:22 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
14:09:22 DEBUG opendrift.models.oceandrift:582: 398 elements penetrated seafloor, lifting up
14:09:22 DEBUG opendrift.models.oceandrift:600: 62 elements reached seafloor, set to bottom
14:09:22 DEBUG opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
14:09:22 DEBUG opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
14:09:22 DEBUG opendrift.models.oceandrift:582: 389 elements penetrated seafloor, lifting up
14:09:22 DEBUG opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
14:09:22 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
14:09:22 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
14:09:22 DEBUG opendrift.models.oceandrift:582: 372 elements penetrated seafloor, lifting up
14:09:22 DEBUG opendrift.models.oceandrift:600: 64 elements reached seafloor, set to bottom
14:09:22 DEBUG opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
14:09:22 DEBUG opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
14:09:22 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:22 DEBUG opendrift.models.basemodel:2945: 6285 active elements (0 deactivated)
14:09:22 DEBUG opendrift.models.basemodel:1658: to be seeded: 3715, already seeded 6285
14:09:22 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:09:22 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:22 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:22 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:23 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:23 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:23 DEBUG opendrift.models.basemodel:1253: Data needed for 6319 elements
14:09:23 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:23 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 20:00:00 (before)
2023-09-02 21:00:00 (after)
14:09:23 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 20:00:00) in space (linearNDFast)
14:09:23 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:23 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:23 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:23 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:23 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:23 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:23 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.317 (max)
14:09:23 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:23 DEBUG opendrift.models.basemodel:1527: 6319 active elements
14:09:23 DEBUG opendrift.models.basemodel:1538: 59.093938857422934 <- latitude -> 59.190396817852914
14:09:23 DEBUG opendrift.models.basemodel:1543: 10.896645636969147 <- longitude -> 11.04608500540976
14:09:23 DEBUG opendrift.models.basemodel:1548: -15.088625183105469 <- z -> 0.0
14:09:23 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:23 DEBUG opendrift.models.basemodel:836: Lifting 487 elements to seafloor.
14:09:23 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:23 INFO opendrift.models.basemodel:2882: 2023-09-02 20:16:21.121579 - step 182 of 216 - 6319 active elements (0 deactivated)
14:09:23 DEBUG opendrift.models.basemodel:2888: 3681 elements scheduled.
14:09:23 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:23 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:23 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:23 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:23 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:23 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:23 DEBUG opendrift.models.basemodel:1253: Data needed for 6319 elements
14:09:23 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:23 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:23 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:23 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:23 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:23 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:23 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:23 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:23 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:23 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:23 DEBUG opendrift.models.basemodel:1253: Data needed for 6319 elements
14:09:23 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:23 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 20:00:00 (before)
2023-09-02 21:00:00 (after)
14:09:24 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:24 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:24 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:24 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:24 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:24 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:24 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x24x6) for time after (2023-09-02 21:00:00)
14:09:24 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 20:00:00) in space (linearNDFast)
14:09:24 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:24 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 21:00:00) in space (linearNDFast)
14:09:24 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3982 elements, expanding data 1
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 2
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3982 elements, expanding data 1
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 2
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4101 elements, expanding data 1
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 379 elements, expanding data 2
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 73 elements, expanding data 3
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4101 elements, expanding data 1
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 379 elements, expanding data 2
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 73 elements, expanding data 3
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4101 elements, expanding data 1
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 379 elements, expanding data 2
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 73 elements, expanding data 3
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4101 elements, expanding data 1
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 379 elements, expanding data 2
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 73 elements, expanding data 3
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4101 elements, expanding data 1
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 379 elements, expanding data 2
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 73 elements, expanding data 3
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4101 elements, expanding data 1
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 379 elements, expanding data 2
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 73 elements, expanding data 3
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5330 elements, expanding data 1
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2415 elements, expanding data 2
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5330 elements, expanding data 1
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2415 elements, expanding data 2
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5330 elements, expanding data 1
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2415 elements, expanding data 2
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5330 elements, expanding data 1
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2415 elements, expanding data 2
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5330 elements, expanding data 1
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2415 elements, expanding data 2
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5330 elements, expanding data 1
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2415 elements, expanding data 2
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3982 elements, expanding data 1
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 2
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3982 elements, expanding data 1
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 2
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3982 elements, expanding data 1
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 2
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3982 elements, expanding data 1
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 2
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3982 elements, expanding data 1
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 2
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3982 elements, expanding data 1
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 2
14:09:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:24 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 20:00:00, weight 0.73) and
after (2023-09-02 21:00:00, weight 0.27) in time
14:09:24 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.10336493383749 and -58.95392554950259 degrees.
14:09:24 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.10336493383749 and -58.95392554950259 degrees.
14:09:24 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:24 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:24 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:24 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:24 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:24 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:24 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.764212 (min) 1.10638 (max)
14:09:24 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.03143 (min) 0.799582 (max)
14:09:24 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000150867 (min) 0.000703822 (max)
14:09:24 DEBUG opendrift.models.basemodel:1524: x_wind: -5.78172 (min) 9.48461 (max)
14:09:24 DEBUG opendrift.models.basemodel:1524: y_wind: -6.4994 (min) 7.10478 (max)
14:09:24 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:24 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:24 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:24 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:24 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:24 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:24 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:24 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.317 (max)
14:09:24 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:24 DEBUG opendrift.models.basemodel:1527: 6319 active elements
14:09:24 DEBUG opendrift.models.basemodel:1538: 59.093938857422934 <- latitude -> 59.190396817852914
14:09:24 DEBUG opendrift.models.basemodel:1543: 10.896645636969147 <- longitude -> 11.04608500540976
14:09:24 DEBUG opendrift.models.basemodel:1548: -15.088625183105469 <- z -> 0.0
14:09:24 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:24 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:24 DEBUG opendrift.models.physics_methods:1050: min: 0.081472, mean: 3.014226, max: 8.358082
14:09:24 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.081472, mean: 3.014226, max: 8.358082
14:09:24 DEBUG opendrift.models.basemodel:813: 910 elements hit coastline, moving back to water
14:09:24 DEBUG opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
14:09:24 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:24 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:24 DEBUG opendrift.models.physics_methods:828: Advecting 37 of 6319 elements above 0.100m with wind-sheared ocean current (0.002721 m/s - 0.118442 m/s)
14:09:24 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:24 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:24 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08644424585683823
14:09:24 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:24 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:24 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:24 DEBUG opendrift.models.oceandrift:582: 630 elements penetrated seafloor, lifting up
14:09:24 DEBUG opendrift.models.oceandrift:600: 71 elements reached seafloor, set to bottom
14:09:24 DEBUG opendrift.models.basemodel:836: Lifting 71 elements to seafloor.
14:09:24 DEBUG opendrift.models.sedimentdrift:112: Settling 71 elements at seafloor
14:09:24 DEBUG opendrift.models.oceandrift:582: 479 elements penetrated seafloor, lifting up
14:09:24 DEBUG opendrift.models.oceandrift:600: 70 elements reached seafloor, set to bottom
14:09:24 DEBUG opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
14:09:24 DEBUG opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
14:09:24 DEBUG opendrift.models.oceandrift:582: 481 elements penetrated seafloor, lifting up
14:09:24 DEBUG opendrift.models.oceandrift:600: 74 elements reached seafloor, set to bottom
14:09:24 DEBUG opendrift.models.basemodel:836: Lifting 74 elements to seafloor.
14:09:24 DEBUG opendrift.models.sedimentdrift:112: Settling 74 elements at seafloor
14:09:24 DEBUG opendrift.models.oceandrift:582: 455 elements penetrated seafloor, lifting up
14:09:24 DEBUG opendrift.models.oceandrift:600: 58 elements reached seafloor, set to bottom
14:09:24 DEBUG opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
14:09:24 DEBUG opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
14:09:24 DEBUG opendrift.models.oceandrift:582: 439 elements penetrated seafloor, lifting up
14:09:24 DEBUG opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
14:09:24 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
14:09:24 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
14:09:24 DEBUG opendrift.models.oceandrift:582: 425 elements penetrated seafloor, lifting up
14:09:24 DEBUG opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
14:09:24 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
14:09:24 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
14:09:24 DEBUG opendrift.models.oceandrift:582: 430 elements penetrated seafloor, lifting up
14:09:24 DEBUG opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
14:09:24 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
14:09:24 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
14:09:24 DEBUG opendrift.models.oceandrift:582: 432 elements penetrated seafloor, lifting up
14:09:24 DEBUG opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
14:09:24 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
14:09:24 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
14:09:24 DEBUG opendrift.models.oceandrift:582: 422 elements penetrated seafloor, lifting up
14:09:24 DEBUG opendrift.models.oceandrift:600: 63 elements reached seafloor, set to bottom
14:09:24 DEBUG opendrift.models.basemodel:836: Lifting 63 elements to seafloor.
14:09:24 DEBUG opendrift.models.sedimentdrift:112: Settling 63 elements at seafloor
14:09:24 DEBUG opendrift.models.oceandrift:582: 415 elements penetrated seafloor, lifting up
14:09:24 DEBUG opendrift.models.oceandrift:600: 62 elements reached seafloor, set to bottom
14:09:24 DEBUG opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
14:09:24 DEBUG opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
14:09:24 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:24 DEBUG opendrift.models.basemodel:2945: 6319 active elements (0 deactivated)
14:09:24 DEBUG opendrift.models.basemodel:1658: to be seeded: 3681, already seeded 6319
14:09:24 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:09:24 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:24 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:24 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:24 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:24 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:24 DEBUG opendrift.models.basemodel:1253: Data needed for 6354 elements
14:09:24 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:24 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 20:00:00 (before)
2023-09-02 21:00:00 (after)
14:09:24 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 20:00:00) in space (linearNDFast)
14:09:24 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:24 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:24 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:24 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:24 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:24 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:24 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3329 (max)
14:09:24 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:24 DEBUG opendrift.models.basemodel:1527: 6354 active elements
14:09:24 DEBUG opendrift.models.basemodel:1538: 59.093767878300724 <- latitude -> 59.18926951483719
14:09:24 DEBUG opendrift.models.basemodel:1543: 10.896969781149688 <- longitude -> 11.050043770029442
14:09:24 DEBUG opendrift.models.basemodel:1548: -15.100689163208008 <- z -> 0.0
14:09:24 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:24 DEBUG opendrift.models.basemodel:836: Lifting 426 elements to seafloor.
14:09:24 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:24 INFO opendrift.models.basemodel:2882: 2023-09-02 20:26:21.121579 - step 183 of 216 - 6354 active elements (0 deactivated)
14:09:24 DEBUG opendrift.models.basemodel:2888: 3646 elements scheduled.
14:09:24 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:24 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:24 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:24 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:24 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:24 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:24 DEBUG opendrift.models.basemodel:1253: Data needed for 6354 elements
14:09:24 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:24 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:24 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:24 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:24 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:24 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:24 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:24 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:24 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:24 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:24 DEBUG opendrift.models.basemodel:1253: Data needed for 6354 elements
14:09:24 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:24 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 20:00:00 (before)
2023-09-02 21:00:00 (after)
14:09:25 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:25 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:25 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:25 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:25 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:25 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:25 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x24x6) for time after (2023-09-02 21:00:00)
14:09:25 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 20:00:00) in space (linearNDFast)
14:09:25 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:25 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 21:00:00) in space (linearNDFast)
14:09:25 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3999 elements, expanding data 1
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 85 elements, expanding data 2
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3999 elements, expanding data 1
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 85 elements, expanding data 2
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4118 elements, expanding data 1
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 368 elements, expanding data 2
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 3
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4118 elements, expanding data 1
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 368 elements, expanding data 2
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 3
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4118 elements, expanding data 1
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 368 elements, expanding data 2
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 3
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4118 elements, expanding data 1
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 368 elements, expanding data 2
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 3
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4118 elements, expanding data 1
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 368 elements, expanding data 2
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 3
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4118 elements, expanding data 1
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 368 elements, expanding data 2
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 3
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5368 elements, expanding data 1
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2434 elements, expanding data 2
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5368 elements, expanding data 1
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2434 elements, expanding data 2
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5368 elements, expanding data 1
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2434 elements, expanding data 2
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5368 elements, expanding data 1
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2434 elements, expanding data 2
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5368 elements, expanding data 1
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2434 elements, expanding data 2
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5368 elements, expanding data 1
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2434 elements, expanding data 2
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3999 elements, expanding data 1
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 85 elements, expanding data 2
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3999 elements, expanding data 1
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 85 elements, expanding data 2
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3999 elements, expanding data 1
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 85 elements, expanding data 2
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3999 elements, expanding data 1
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 85 elements, expanding data 2
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3999 elements, expanding data 1
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 85 elements, expanding data 2
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3999 elements, expanding data 1
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 85 elements, expanding data 2
14:09:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:25 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 20:00:00, weight 0.56) and
after (2023-09-02 21:00:00, weight 0.44) in time
14:09:25 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.10304079576469 and -58.949966780968985 degrees.
14:09:25 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.10304079576469 and -58.949966780968985 degrees.
14:09:25 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:25 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:25 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:25 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:25 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:25 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:25 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.85351 (min) 1.20205 (max)
14:09:25 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.906174 (min) 0.737086 (max)
14:09:25 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000141852 (min) 0.000665806 (max)
14:09:25 DEBUG opendrift.models.basemodel:1524: x_wind: -5.88233 (min) 9.96437 (max)
14:09:25 DEBUG opendrift.models.basemodel:1524: y_wind: -6.21142 (min) 8.97324 (max)
14:09:25 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:25 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:25 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:25 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:25 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:25 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:25 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:25 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3329 (max)
14:09:25 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:25 DEBUG opendrift.models.basemodel:1527: 6354 active elements
14:09:25 DEBUG opendrift.models.basemodel:1538: 59.093767878300724 <- latitude -> 59.18926951483719
14:09:25 DEBUG opendrift.models.basemodel:1543: 10.896969781149688 <- longitude -> 11.050043770029442
14:09:25 DEBUG opendrift.models.basemodel:1548: -15.08375358581543 <- z -> 0.0
14:09:25 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:25 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:25 DEBUG opendrift.models.physics_methods:1050: min: 0.104266, mean: 2.852600, max: 8.596759
14:09:25 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.104266, mean: 2.852600, max: 8.596759
14:09:25 DEBUG opendrift.models.basemodel:813: 937 elements hit coastline, moving back to water
14:09:25 DEBUG opendrift.models.basemodel:836: Lifting 177 elements to seafloor.
14:09:25 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:25 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:25 DEBUG opendrift.models.physics_methods:828: Advecting 35 of 6354 elements above 0.100m with wind-sheared ocean current (0.007811 m/s - 0.138370 m/s)
14:09:25 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:25 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:25 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.0914516008454132
14:09:25 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:25 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:25 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:25 DEBUG opendrift.models.oceandrift:582: 681 elements penetrated seafloor, lifting up
14:09:25 DEBUG opendrift.models.oceandrift:600: 76 elements reached seafloor, set to bottom
14:09:25 DEBUG opendrift.models.basemodel:836: Lifting 76 elements to seafloor.
14:09:25 DEBUG opendrift.models.sedimentdrift:112: Settling 76 elements at seafloor
14:09:25 DEBUG opendrift.models.oceandrift:582: 560 elements penetrated seafloor, lifting up
14:09:25 DEBUG opendrift.models.oceandrift:600: 74 elements reached seafloor, set to bottom
14:09:25 DEBUG opendrift.models.basemodel:836: Lifting 74 elements to seafloor.
14:09:25 DEBUG opendrift.models.sedimentdrift:112: Settling 74 elements at seafloor
14:09:25 DEBUG opendrift.models.oceandrift:582: 490 elements penetrated seafloor, lifting up
14:09:25 DEBUG opendrift.models.oceandrift:600: 66 elements reached seafloor, set to bottom
14:09:25 DEBUG opendrift.models.basemodel:836: Lifting 66 elements to seafloor.
14:09:25 DEBUG opendrift.models.sedimentdrift:112: Settling 66 elements at seafloor
14:09:25 DEBUG opendrift.models.oceandrift:582: 486 elements penetrated seafloor, lifting up
14:09:25 DEBUG opendrift.models.oceandrift:600: 85 elements reached seafloor, set to bottom
14:09:25 DEBUG opendrift.models.basemodel:836: Lifting 85 elements to seafloor.
14:09:25 DEBUG opendrift.models.sedimentdrift:112: Settling 85 elements at seafloor
14:09:25 DEBUG opendrift.models.oceandrift:582: 434 elements penetrated seafloor, lifting up
14:09:25 DEBUG opendrift.models.oceandrift:600: 75 elements reached seafloor, set to bottom
14:09:25 DEBUG opendrift.models.basemodel:836: Lifting 75 elements to seafloor.
14:09:25 DEBUG opendrift.models.sedimentdrift:112: Settling 75 elements at seafloor
14:09:25 DEBUG opendrift.models.oceandrift:582: 455 elements penetrated seafloor, lifting up
14:09:25 DEBUG opendrift.models.oceandrift:600: 74 elements reached seafloor, set to bottom
14:09:25 DEBUG opendrift.models.basemodel:836: Lifting 74 elements to seafloor.
14:09:25 DEBUG opendrift.models.sedimentdrift:112: Settling 74 elements at seafloor
14:09:25 DEBUG opendrift.models.oceandrift:582: 435 elements penetrated seafloor, lifting up
14:09:25 DEBUG opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
14:09:25 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
14:09:25 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
14:09:25 DEBUG opendrift.models.oceandrift:582: 395 elements penetrated seafloor, lifting up
14:09:25 DEBUG opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
14:09:25 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
14:09:25 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
14:09:25 DEBUG opendrift.models.oceandrift:582: 399 elements penetrated seafloor, lifting up
14:09:25 DEBUG opendrift.models.oceandrift:600: 59 elements reached seafloor, set to bottom
14:09:25 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
14:09:25 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
14:09:25 DEBUG opendrift.models.oceandrift:582: 354 elements penetrated seafloor, lifting up
14:09:25 DEBUG opendrift.models.oceandrift:600: 59 elements reached seafloor, set to bottom
14:09:25 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
14:09:25 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
14:09:25 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:25 DEBUG opendrift.models.basemodel:2945: 6354 active elements (0 deactivated)
14:09:25 DEBUG opendrift.models.basemodel:1658: to be seeded: 3646, already seeded 6354
14:09:25 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:09:25 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:25 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:25 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:25 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:25 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:25 DEBUG opendrift.models.basemodel:1253: Data needed for 6389 elements
14:09:25 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:25 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 20:00:00 (before)
2023-09-02 21:00:00 (after)
14:09:25 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 20:00:00) in space (linearNDFast)
14:09:25 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:25 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:25 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:25 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:25 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:25 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:25 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3797 (max)
14:09:25 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:25 DEBUG opendrift.models.basemodel:1527: 6389 active elements
14:09:25 DEBUG opendrift.models.basemodel:1538: 59.09388615222786 <- latitude -> 59.18975281151898
14:09:25 DEBUG opendrift.models.basemodel:1543: 10.895390733790705 <- longitude -> 11.050360715004915
14:09:25 DEBUG opendrift.models.basemodel:1548: -15.07375358581543 <- z -> 0.0
14:09:25 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:25 DEBUG opendrift.models.basemodel:836: Lifting 482 elements to seafloor.
14:09:25 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:25 INFO opendrift.models.basemodel:2882: 2023-09-02 20:36:21.121579 - step 184 of 216 - 6389 active elements (0 deactivated)
14:09:25 DEBUG opendrift.models.basemodel:2888: 3611 elements scheduled.
14:09:25 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:25 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:25 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:25 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:25 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:25 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:25 DEBUG opendrift.models.basemodel:1253: Data needed for 6389 elements
14:09:25 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:25 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:25 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:25 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:25 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:25 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:25 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:25 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:25 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:25 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:25 DEBUG opendrift.models.basemodel:1253: Data needed for 6389 elements
14:09:25 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:25 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 20:00:00 (before)
2023-09-02 21:00:00 (after)
14:09:26 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:26 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:26 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:26 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:26 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:26 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:26 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x25x5) for time after (2023-09-02 21:00:00)
14:09:26 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 20:00:00) in space (linearNDFast)
14:09:26 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:26 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 21:00:00) in space (linearNDFast)
14:09:26 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3995 elements, expanding data 1
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 2
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3995 elements, expanding data 1
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 2
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4123 elements, expanding data 1
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 382 elements, expanding data 2
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 82 elements, expanding data 3
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4123 elements, expanding data 1
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 382 elements, expanding data 2
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 82 elements, expanding data 3
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4123 elements, expanding data 1
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 382 elements, expanding data 2
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 82 elements, expanding data 3
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4123 elements, expanding data 1
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 382 elements, expanding data 2
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 82 elements, expanding data 3
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4123 elements, expanding data 1
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 382 elements, expanding data 2
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 82 elements, expanding data 3
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5388 elements, expanding data 1
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2423 elements, expanding data 2
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5388 elements, expanding data 1
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2423 elements, expanding data 2
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5388 elements, expanding data 1
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2423 elements, expanding data 2
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5388 elements, expanding data 1
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2423 elements, expanding data 2
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5388 elements, expanding data 1
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2423 elements, expanding data 2
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3995 elements, expanding data 1
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 2
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3995 elements, expanding data 1
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 2
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3995 elements, expanding data 1
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 2
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3995 elements, expanding data 1
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 2
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3995 elements, expanding data 1
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 2
14:09:26 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 20:00:00, weight 0.39) and
after (2023-09-02 21:00:00, weight 0.61) in time
14:09:26 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.10461983623568 and -58.949649838434766 degrees.
14:09:26 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.10461983623568 and -58.949649838434766 degrees.
14:09:26 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:26 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:26 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:26 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:26 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:26 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:26 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.81692 (min) 1.36559 (max)
14:09:26 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.05943 (min) 0.820343 (max)
14:09:26 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000104602 (min) 0.000631741 (max)
14:09:26 DEBUG opendrift.models.basemodel:1524: x_wind: -4.98621 (min) 11.3237 (max)
14:09:26 DEBUG opendrift.models.basemodel:1524: y_wind: -6.7035 (min) 8.46694 (max)
14:09:26 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:26 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:26 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:26 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:26 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:26 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:26 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:26 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3797 (max)
14:09:26 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:26 DEBUG opendrift.models.basemodel:1527: 6389 active elements
14:09:26 DEBUG opendrift.models.basemodel:1538: 59.09388615222786 <- latitude -> 59.18975281151898
14:09:26 DEBUG opendrift.models.basemodel:1543: 10.895390733790705 <- longitude -> 11.050360715004915
14:09:26 DEBUG opendrift.models.basemodel:1548: -14.964595794677734 <- z -> 0.0
14:09:26 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:26 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:26 DEBUG opendrift.models.physics_methods:1050: min: 0.008241, mean: 2.672373, max: 9.676224
14:09:26 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.008241, mean: 2.672373, max: 9.676224
14:09:26 DEBUG opendrift.models.basemodel:813: 891 elements hit coastline, moving back to water
14:09:26 DEBUG opendrift.models.basemodel:836: Lifting 181 elements to seafloor.
14:09:26 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:26 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:26 DEBUG opendrift.models.physics_methods:828: Advecting 37 of 6389 elements above 0.100m with wind-sheared ocean current (0.001281 m/s - 0.146571 m/s)
14:09:26 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:26 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:26 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.1158589264436531
14:09:26 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:26 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:26 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:26 DEBUG opendrift.models.oceandrift:582: 625 elements penetrated seafloor, lifting up
14:09:26 DEBUG opendrift.models.oceandrift:600: 88 elements reached seafloor, set to bottom
14:09:26 DEBUG opendrift.models.basemodel:836: Lifting 88 elements to seafloor.
14:09:26 DEBUG opendrift.models.sedimentdrift:112: Settling 88 elements at seafloor
14:09:26 DEBUG opendrift.models.oceandrift:582: 487 elements penetrated seafloor, lifting up
14:09:26 DEBUG opendrift.models.oceandrift:600: 87 elements reached seafloor, set to bottom
14:09:26 DEBUG opendrift.models.basemodel:836: Lifting 87 elements to seafloor.
14:09:26 DEBUG opendrift.models.sedimentdrift:112: Settling 87 elements at seafloor
14:09:26 DEBUG opendrift.models.oceandrift:582: 441 elements penetrated seafloor, lifting up
14:09:26 DEBUG opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
14:09:26 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
14:09:26 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
14:09:26 DEBUG opendrift.models.oceandrift:582: 435 elements penetrated seafloor, lifting up
14:09:26 DEBUG opendrift.models.oceandrift:600: 86 elements reached seafloor, set to bottom
14:09:26 DEBUG opendrift.models.basemodel:836: Lifting 86 elements to seafloor.
14:09:26 DEBUG opendrift.models.sedimentdrift:112: Settling 86 elements at seafloor
14:09:26 DEBUG opendrift.models.oceandrift:582: 421 elements penetrated seafloor, lifting up
14:09:26 DEBUG opendrift.models.oceandrift:600: 62 elements reached seafloor, set to bottom
14:09:26 DEBUG opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
14:09:26 DEBUG opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
14:09:26 DEBUG opendrift.models.oceandrift:582: 415 elements penetrated seafloor, lifting up
14:09:26 DEBUG opendrift.models.oceandrift:600: 76 elements reached seafloor, set to bottom
14:09:26 DEBUG opendrift.models.basemodel:836: Lifting 76 elements to seafloor.
14:09:26 DEBUG opendrift.models.sedimentdrift:112: Settling 76 elements at seafloor
14:09:26 DEBUG opendrift.models.oceandrift:582: 388 elements penetrated seafloor, lifting up
14:09:26 DEBUG opendrift.models.oceandrift:600: 65 elements reached seafloor, set to bottom
14:09:26 DEBUG opendrift.models.basemodel:836: Lifting 65 elements to seafloor.
14:09:26 DEBUG opendrift.models.sedimentdrift:112: Settling 65 elements at seafloor
14:09:26 DEBUG opendrift.models.oceandrift:582: 385 elements penetrated seafloor, lifting up
14:09:26 DEBUG opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
14:09:26 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
14:09:26 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
14:09:26 DEBUG opendrift.models.oceandrift:582: 360 elements penetrated seafloor, lifting up
14:09:26 DEBUG opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
14:09:26 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
14:09:26 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
14:09:26 DEBUG opendrift.models.oceandrift:582: 335 elements penetrated seafloor, lifting up
14:09:26 DEBUG opendrift.models.oceandrift:600: 59 elements reached seafloor, set to bottom
14:09:26 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
14:09:26 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
14:09:26 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:26 DEBUG opendrift.models.basemodel:2945: 6389 active elements (0 deactivated)
14:09:26 DEBUG opendrift.models.basemodel:1658: to be seeded: 3611, already seeded 6389
14:09:26 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:09:26 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:26 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:26 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:26 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:26 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:26 DEBUG opendrift.models.basemodel:1253: Data needed for 6423 elements
14:09:26 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:26 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 20:00:00 (before)
2023-09-02 21:00:00 (after)
14:09:26 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 20:00:00) in space (linearNDFast)
14:09:26 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:26 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:26 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:26 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:26 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:26 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:26 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3744 (max)
14:09:26 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:26 DEBUG opendrift.models.basemodel:1527: 6423 active elements
14:09:26 DEBUG opendrift.models.basemodel:1538: 59.09381948497037 <- latitude -> 59.18924064415754
14:09:26 DEBUG opendrift.models.basemodel:1543: 10.89194006646917 <- longitude -> 11.05271830246577
14:09:26 DEBUG opendrift.models.basemodel:1548: -14.964595794677734 <- z -> 0.0
14:09:26 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:26 DEBUG opendrift.models.basemodel:836: Lifting 504 elements to seafloor.
14:09:26 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:26 INFO opendrift.models.basemodel:2882: 2023-09-02 20:46:21.121579 - step 185 of 216 - 6423 active elements (0 deactivated)
14:09:26 DEBUG opendrift.models.basemodel:2888: 3577 elements scheduled.
14:09:26 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:26 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:26 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:26 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:26 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:26 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:26 DEBUG opendrift.models.basemodel:1253: Data needed for 6423 elements
14:09:26 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:26 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:26 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:26 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:26 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:26 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:26 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:26 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:26 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:26 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:26 DEBUG opendrift.models.basemodel:1253: Data needed for 6423 elements
14:09:26 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:26 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 20:00:00 (before)
2023-09-02 21:00:00 (after)
14:09:26 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:26 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:26 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:26 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:26 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:26 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:26 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x25x5) for time after (2023-09-02 21:00:00)
14:09:26 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 20:00:00) in space (linearNDFast)
14:09:26 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:26 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 21:00:00) in space (linearNDFast)
14:09:26 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4023 elements, expanding data 1
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 95 elements, expanding data 2
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4023 elements, expanding data 1
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 95 elements, expanding data 2
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4153 elements, expanding data 1
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 384 elements, expanding data 2
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 3
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4153 elements, expanding data 1
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 384 elements, expanding data 2
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 3
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4153 elements, expanding data 1
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 384 elements, expanding data 2
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 3
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4153 elements, expanding data 1
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 384 elements, expanding data 2
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 3
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4153 elements, expanding data 1
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 384 elements, expanding data 2
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 3
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5420 elements, expanding data 1
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2440 elements, expanding data 2
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5420 elements, expanding data 1
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2440 elements, expanding data 2
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5420 elements, expanding data 1
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2440 elements, expanding data 2
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5420 elements, expanding data 1
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2440 elements, expanding data 2
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5420 elements, expanding data 1
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2440 elements, expanding data 2
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4023 elements, expanding data 1
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 95 elements, expanding data 2
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4023 elements, expanding data 1
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 95 elements, expanding data 2
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4023 elements, expanding data 1
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 95 elements, expanding data 2
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4023 elements, expanding data 1
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 95 elements, expanding data 2
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4023 elements, expanding data 1
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 95 elements, expanding data 2
14:09:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:26 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 20:00:00, weight 0.23) and
after (2023-09-02 21:00:00, weight 0.77) in time
14:09:27 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.10807050840167 and -58.947292248029335 degrees.
14:09:27 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.10807050840167 and -58.947292248029335 degrees.
14:09:27 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:27 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:27 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:27 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:27 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:27 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:27 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.722238 (min) 1.29995 (max)
14:09:27 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.15315 (min) 0.77392 (max)
14:09:27 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000124877 (min) 0.000670199 (max)
14:09:27 DEBUG opendrift.models.basemodel:1524: x_wind: -5.66346 (min) 8.93328 (max)
14:09:27 DEBUG opendrift.models.basemodel:1524: y_wind: -7.92716 (min) 8.50117 (max)
14:09:27 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:27 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:27 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:27 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:27 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:27 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:27 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:27 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3744 (max)
14:09:27 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:27 DEBUG opendrift.models.basemodel:1527: 6423 active elements
14:09:27 DEBUG opendrift.models.basemodel:1538: 59.09381948497037 <- latitude -> 59.18924064415754
14:09:27 DEBUG opendrift.models.basemodel:1543: 10.89194006646917 <- longitude -> 11.05271830246577
14:09:27 DEBUG opendrift.models.basemodel:1548: -14.964595794677734 <- z -> 0.0
14:09:27 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:27 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:27 DEBUG opendrift.models.physics_methods:1050: min: 0.038506, mean: 2.543672, max: 7.894356
14:09:27 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.038506, mean: 2.543672, max: 7.894356
14:09:27 DEBUG opendrift.models.basemodel:813: 1005 elements hit coastline, moving back to water
14:09:27 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
14:09:27 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:27 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:27 DEBUG opendrift.models.physics_methods:828: Advecting 37 of 6423 elements above 0.100m with wind-sheared ocean current (0.002365 m/s - 0.130065 m/s)
14:09:27 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:27 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:27 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07711854562385559
14:09:27 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:27 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:27 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:27 DEBUG opendrift.models.oceandrift:582: 655 elements penetrated seafloor, lifting up
14:09:27 DEBUG opendrift.models.oceandrift:600: 99 elements reached seafloor, set to bottom
14:09:27 DEBUG opendrift.models.basemodel:836: Lifting 99 elements to seafloor.
14:09:27 DEBUG opendrift.models.sedimentdrift:112: Settling 99 elements at seafloor
14:09:27 DEBUG opendrift.models.oceandrift:582: 520 elements penetrated seafloor, lifting up
14:09:27 DEBUG opendrift.models.oceandrift:600: 87 elements reached seafloor, set to bottom
14:09:27 DEBUG opendrift.models.basemodel:836: Lifting 87 elements to seafloor.
14:09:27 DEBUG opendrift.models.sedimentdrift:112: Settling 87 elements at seafloor
14:09:27 DEBUG opendrift.models.oceandrift:582: 477 elements penetrated seafloor, lifting up
14:09:27 DEBUG opendrift.models.oceandrift:600: 73 elements reached seafloor, set to bottom
14:09:27 DEBUG opendrift.models.basemodel:836: Lifting 73 elements to seafloor.
14:09:27 DEBUG opendrift.models.sedimentdrift:112: Settling 73 elements at seafloor
14:09:27 DEBUG opendrift.models.oceandrift:582: 413 elements penetrated seafloor, lifting up
14:09:27 DEBUG opendrift.models.oceandrift:600: 91 elements reached seafloor, set to bottom
14:09:27 DEBUG opendrift.models.basemodel:836: Lifting 91 elements to seafloor.
14:09:27 DEBUG opendrift.models.sedimentdrift:112: Settling 91 elements at seafloor
14:09:27 DEBUG opendrift.models.oceandrift:582: 408 elements penetrated seafloor, lifting up
14:09:27 DEBUG opendrift.models.oceandrift:600: 72 elements reached seafloor, set to bottom
14:09:27 DEBUG opendrift.models.basemodel:836: Lifting 72 elements to seafloor.
14:09:27 DEBUG opendrift.models.sedimentdrift:112: Settling 72 elements at seafloor
14:09:27 DEBUG opendrift.models.oceandrift:582: 422 elements penetrated seafloor, lifting up
14:09:27 DEBUG opendrift.models.oceandrift:600: 63 elements reached seafloor, set to bottom
14:09:27 DEBUG opendrift.models.basemodel:836: Lifting 63 elements to seafloor.
14:09:27 DEBUG opendrift.models.sedimentdrift:112: Settling 63 elements at seafloor
14:09:27 DEBUG opendrift.models.oceandrift:582: 410 elements penetrated seafloor, lifting up
14:09:27 DEBUG opendrift.models.oceandrift:600: 75 elements reached seafloor, set to bottom
14:09:27 DEBUG opendrift.models.basemodel:836: Lifting 75 elements to seafloor.
14:09:27 DEBUG opendrift.models.sedimentdrift:112: Settling 75 elements at seafloor
14:09:27 DEBUG opendrift.models.oceandrift:582: 408 elements penetrated seafloor, lifting up
14:09:27 DEBUG opendrift.models.oceandrift:600: 70 elements reached seafloor, set to bottom
14:09:27 DEBUG opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
14:09:27 DEBUG opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
14:09:27 DEBUG opendrift.models.oceandrift:582: 375 elements penetrated seafloor, lifting up
14:09:27 DEBUG opendrift.models.oceandrift:600: 82 elements reached seafloor, set to bottom
14:09:27 DEBUG opendrift.models.basemodel:836: Lifting 82 elements to seafloor.
14:09:27 DEBUG opendrift.models.sedimentdrift:112: Settling 82 elements at seafloor
14:09:27 DEBUG opendrift.models.oceandrift:582: 348 elements penetrated seafloor, lifting up
14:09:27 DEBUG opendrift.models.oceandrift:600: 77 elements reached seafloor, set to bottom
14:09:27 DEBUG opendrift.models.basemodel:836: Lifting 77 elements to seafloor.
14:09:27 DEBUG opendrift.models.sedimentdrift:112: Settling 77 elements at seafloor
14:09:27 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:27 DEBUG opendrift.models.basemodel:2945: 6423 active elements (0 deactivated)
14:09:27 DEBUG opendrift.models.basemodel:1658: to be seeded: 3577, already seeded 6423
14:09:27 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:09:27 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:27 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:27 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:27 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:27 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:27 DEBUG opendrift.models.basemodel:1253: Data needed for 6458 elements
14:09:27 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:27 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 20:00:00 (before)
2023-09-02 21:00:00 (after)
14:09:27 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 20:00:00) in space (linearNDFast)
14:09:27 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:27 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:27 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:27 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:27 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:27 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:27 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4554 (max)
14:09:27 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:27 DEBUG opendrift.models.basemodel:1527: 6458 active elements
14:09:27 DEBUG opendrift.models.basemodel:1538: 59.09291919500381 <- latitude -> 59.19016950209684
14:09:27 DEBUG opendrift.models.basemodel:1543: 10.894574140878168 <- longitude -> 11.051327061732303
14:09:27 DEBUG opendrift.models.basemodel:1548: -14.954595794677735 <- z -> 0.0
14:09:27 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:27 DEBUG opendrift.models.basemodel:836: Lifting 522 elements to seafloor.
14:09:27 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:27 INFO opendrift.models.basemodel:2882: 2023-09-02 20:56:21.121579 - step 186 of 216 - 6458 active elements (0 deactivated)
14:09:27 DEBUG opendrift.models.basemodel:2888: 3542 elements scheduled.
14:09:27 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:27 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:27 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:27 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:27 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:27 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:27 DEBUG opendrift.models.basemodel:1253: Data needed for 6458 elements
14:09:27 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:27 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:27 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:27 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:27 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:27 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:27 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:27 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:27 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:27 DEBUG opendrift.models.basemodel:1253: Data needed for 6458 elements
14:09:27 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:27 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 20:00:00 (before)
2023-09-02 21:00:00 (after)
14:09:27 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:27 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:27 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:27 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:27 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:27 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:27 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x25x5) for time after (2023-09-02 21:00:00)
14:09:27 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 20:00:00) in space (linearNDFast)
14:09:27 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:27 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 21:00:00) in space (linearNDFast)
14:09:27 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4068 elements, expanding data 1
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 92 elements, expanding data 2
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4068 elements, expanding data 1
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 92 elements, expanding data 2
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4204 elements, expanding data 1
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 382 elements, expanding data 2
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 3
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4204 elements, expanding data 1
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 382 elements, expanding data 2
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 3
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4204 elements, expanding data 1
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 382 elements, expanding data 2
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 3
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4204 elements, expanding data 1
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 382 elements, expanding data 2
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 3
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4204 elements, expanding data 1
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 382 elements, expanding data 2
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 3
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5442 elements, expanding data 1
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2465 elements, expanding data 2
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5442 elements, expanding data 1
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2465 elements, expanding data 2
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5442 elements, expanding data 1
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2465 elements, expanding data 2
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5442 elements, expanding data 1
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2465 elements, expanding data 2
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5442 elements, expanding data 1
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2465 elements, expanding data 2
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4068 elements, expanding data 1
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 92 elements, expanding data 2
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4068 elements, expanding data 1
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 92 elements, expanding data 2
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4068 elements, expanding data 1
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 92 elements, expanding data 2
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4068 elements, expanding data 1
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 92 elements, expanding data 2
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4068 elements, expanding data 1
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 92 elements, expanding data 2
14:09:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:27 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 20:00:00, weight 0.06) and
after (2023-09-02 21:00:00, weight 0.94) in time
14:09:27 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.10543642792902 and -58.948683504711056 degrees.
14:09:27 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.10543642792902 and -58.948683504711056 degrees.
14:09:27 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:27 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:27 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:27 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:27 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:27 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:27 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.74342 (min) 1.225 (max)
14:09:27 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.976299 (min) 0.699027 (max)
14:09:27 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000110746 (min) 0.000623911 (max)
14:09:27 DEBUG opendrift.models.basemodel:1524: x_wind: -6.14372 (min) 8.8118 (max)
14:09:27 DEBUG opendrift.models.basemodel:1524: y_wind: -7.76503 (min) 8.9657 (max)
14:09:27 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:27 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:27 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:27 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:27 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:27 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:27 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:27 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4554 (max)
14:09:27 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:27 DEBUG opendrift.models.basemodel:1527: 6458 active elements
14:09:27 DEBUG opendrift.models.basemodel:1538: 59.09291919500381 <- latitude -> 59.19016950209684
14:09:27 DEBUG opendrift.models.basemodel:1543: 10.894574140878168 <- longitude -> 11.051327061732303
14:09:27 DEBUG opendrift.models.basemodel:1548: -14.954595794677735 <- z -> 0.0
14:09:27 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:27 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:27 DEBUG opendrift.models.physics_methods:1050: min: 0.007129, mean: 2.401434, max: 8.036842
14:09:27 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.007129, mean: 2.401434, max: 8.036842
14:09:27 DEBUG opendrift.models.basemodel:813: 953 elements hit coastline, moving back to water
14:09:27 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:09:27 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:27 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:27 DEBUG opendrift.models.physics_methods:828: Advecting 36 of 6458 elements above 0.100m with wind-sheared ocean current (0.003016 m/s - 0.158826 m/s)
14:09:27 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:27 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:27 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07992734768159866
14:09:27 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:27 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:27 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:27 DEBUG opendrift.models.oceandrift:582: 657 elements penetrated seafloor, lifting up
14:09:27 DEBUG opendrift.models.oceandrift:600: 119 elements reached seafloor, set to bottom
14:09:27 DEBUG opendrift.models.basemodel:836: Lifting 119 elements to seafloor.
14:09:27 DEBUG opendrift.models.sedimentdrift:112: Settling 119 elements at seafloor
14:09:27 DEBUG opendrift.models.oceandrift:582: 526 elements penetrated seafloor, lifting up
14:09:27 DEBUG opendrift.models.oceandrift:600: 102 elements reached seafloor, set to bottom
14:09:27 DEBUG opendrift.models.basemodel:836: Lifting 102 elements to seafloor.
14:09:27 DEBUG opendrift.models.sedimentdrift:112: Settling 102 elements at seafloor
14:09:27 DEBUG opendrift.models.oceandrift:582: 485 elements penetrated seafloor, lifting up
14:09:27 DEBUG opendrift.models.oceandrift:600: 82 elements reached seafloor, set to bottom
14:09:27 DEBUG opendrift.models.basemodel:836: Lifting 82 elements to seafloor.
14:09:27 DEBUG opendrift.models.sedimentdrift:112: Settling 82 elements at seafloor
14:09:27 DEBUG opendrift.models.oceandrift:582: 447 elements penetrated seafloor, lifting up
14:09:27 DEBUG opendrift.models.oceandrift:600: 80 elements reached seafloor, set to bottom
14:09:27 DEBUG opendrift.models.basemodel:836: Lifting 80 elements to seafloor.
14:09:27 DEBUG opendrift.models.sedimentdrift:112: Settling 80 elements at seafloor
14:09:27 DEBUG opendrift.models.oceandrift:582: 431 elements penetrated seafloor, lifting up
14:09:27 DEBUG opendrift.models.oceandrift:600: 90 elements reached seafloor, set to bottom
14:09:27 DEBUG opendrift.models.basemodel:836: Lifting 90 elements to seafloor.
14:09:27 DEBUG opendrift.models.sedimentdrift:112: Settling 90 elements at seafloor
14:09:27 DEBUG opendrift.models.oceandrift:582: 403 elements penetrated seafloor, lifting up
14:09:27 DEBUG opendrift.models.oceandrift:600: 73 elements reached seafloor, set to bottom
14:09:27 DEBUG opendrift.models.basemodel:836: Lifting 73 elements to seafloor.
14:09:27 DEBUG opendrift.models.sedimentdrift:112: Settling 73 elements at seafloor
14:09:27 DEBUG opendrift.models.oceandrift:582: 364 elements penetrated seafloor, lifting up
14:09:27 DEBUG opendrift.models.oceandrift:600: 72 elements reached seafloor, set to bottom
14:09:27 DEBUG opendrift.models.basemodel:836: Lifting 72 elements to seafloor.
14:09:27 DEBUG opendrift.models.sedimentdrift:112: Settling 72 elements at seafloor
14:09:28 DEBUG opendrift.models.oceandrift:582: 376 elements penetrated seafloor, lifting up
14:09:28 DEBUG opendrift.models.oceandrift:600: 56 elements reached seafloor, set to bottom
14:09:28 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
14:09:28 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
14:09:28 DEBUG opendrift.models.oceandrift:582: 368 elements penetrated seafloor, lifting up
14:09:28 DEBUG opendrift.models.oceandrift:600: 60 elements reached seafloor, set to bottom
14:09:28 DEBUG opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
14:09:28 DEBUG opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
14:09:28 DEBUG opendrift.models.oceandrift:582: 342 elements penetrated seafloor, lifting up
14:09:28 DEBUG opendrift.models.oceandrift:600: 66 elements reached seafloor, set to bottom
14:09:28 DEBUG opendrift.models.basemodel:836: Lifting 66 elements to seafloor.
14:09:28 DEBUG opendrift.models.sedimentdrift:112: Settling 66 elements at seafloor
14:09:28 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:28 DEBUG opendrift.models.basemodel:2945: 6458 active elements (0 deactivated)
14:09:28 DEBUG opendrift.models.basemodel:1658: to be seeded: 3542, already seeded 6458
14:09:28 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:09:28 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:28 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:28 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:28 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:28 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:28 DEBUG opendrift.models.basemodel:1253: Data needed for 6493 elements
14:09:28 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:28 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 21:00:00 (before)
2023-09-02 22:00:00 (after)
14:09:28 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 21:00:00) in space (linearNDFast)
14:09:28 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:28 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:28 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:28 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:28 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:28 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:28 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5134 (max)
14:09:28 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:28 DEBUG opendrift.models.basemodel:1527: 6493 active elements
14:09:28 DEBUG opendrift.models.basemodel:1538: 59.09298828774129 <- latitude -> 59.190365390561645
14:09:28 DEBUG opendrift.models.basemodel:1543: 10.887289233480058 <- longitude -> 11.053318275238903
14:09:28 DEBUG opendrift.models.basemodel:1548: -15.44542335510254 <- z -> 0.0
14:09:28 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:28 DEBUG opendrift.models.basemodel:836: Lifting 529 elements to seafloor.
14:09:28 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:28 INFO opendrift.models.basemodel:2882: 2023-09-02 21:06:21.121579 - step 187 of 216 - 6493 active elements (0 deactivated)
14:09:28 DEBUG opendrift.models.basemodel:2888: 3507 elements scheduled.
14:09:28 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:28 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:28 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:28 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:28 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:28 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:28 DEBUG opendrift.models.basemodel:1253: Data needed for 6493 elements
14:09:28 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:28 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:28 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:28 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:28 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:28 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:28 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:28 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:28 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:28 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:28 DEBUG opendrift.models.basemodel:1253: Data needed for 6493 elements
14:09:28 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:28 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 21:00:00 (before)
2023-09-02 22:00:00 (after)
14:09:28 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:28 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:28 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:28 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:28 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:28 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:28 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x25x6) for time after (2023-09-02 22:00:00)
14:09:28 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 21:00:00) in space (linearNDFast)
14:09:28 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:28 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 22:00:00) in space (linearNDFast)
14:09:28 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4043 elements, expanding data 1
14:09:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 2
14:09:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4043 elements, expanding data 1
14:09:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 2
14:09:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4183 elements, expanding data 1
14:09:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 391 elements, expanding data 2
14:09:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 82 elements, expanding data 3
14:09:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4183 elements, expanding data 1
14:09:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 391 elements, expanding data 2
14:09:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 82 elements, expanding data 3
14:09:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4183 elements, expanding data 1
14:09:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 391 elements, expanding data 2
14:09:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 82 elements, expanding data 3
14:09:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4183 elements, expanding data 1
14:09:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 391 elements, expanding data 2
14:09:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 82 elements, expanding data 3
14:09:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4183 elements, expanding data 1
14:09:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 391 elements, expanding data 2
14:09:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 82 elements, expanding data 3
14:09:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4183 elements, expanding data 1
14:09:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 391 elements, expanding data 2
14:09:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 82 elements, expanding data 3
14:09:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5470 elements, expanding data 1
14:09:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2425 elements, expanding data 2
14:09:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5470 elements, expanding data 1
14:09:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2425 elements, expanding data 2
14:09:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5470 elements, expanding data 1
14:09:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2425 elements, expanding data 2
14:09:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5470 elements, expanding data 1
14:09:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2425 elements, expanding data 2
14:09:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5470 elements, expanding data 1
14:09:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2425 elements, expanding data 2
14:09:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5470 elements, expanding data 1
14:09:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2425 elements, expanding data 2
14:09:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4043 elements, expanding data 1
14:09:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 2
14:09:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4043 elements, expanding data 1
14:09:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 2
14:09:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4043 elements, expanding data 1
14:09:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 2
14:09:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4043 elements, expanding data 1
14:09:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 2
14:09:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4043 elements, expanding data 1
14:09:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 2
14:09:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4043 elements, expanding data 1
14:09:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 2
14:09:29 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 21:00:00, weight 0.89) and
after (2023-09-02 22:00:00, weight 0.11) in time
14:09:29 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.112721343284605 and -58.94669229404936 degrees.
14:09:29 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.112721343284605 and -58.94669229404936 degrees.
14:09:29 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:29 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:29 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:29 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:29 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:29 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:29 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.762523 (min) 1.19022 (max)
14:09:29 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.38471 (min) 0.819737 (max)
14:09:29 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000107374 (min) 0.000708506 (max)
14:09:29 DEBUG opendrift.models.basemodel:1524: x_wind: -5.88436 (min) 8.70316 (max)
14:09:29 DEBUG opendrift.models.basemodel:1524: y_wind: -7.09742 (min) 9.37678 (max)
14:09:29 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:29 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:29 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:29 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:29 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:29 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:29 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:29 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5134 (max)
14:09:29 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:29 DEBUG opendrift.models.basemodel:1527: 6493 active elements
14:09:29 DEBUG opendrift.models.basemodel:1538: 59.09298828774129 <- latitude -> 59.190365390561645
14:09:29 DEBUG opendrift.models.basemodel:1543: 10.887289233480058 <- longitude -> 11.053318275238903
14:09:29 DEBUG opendrift.models.basemodel:1548: -15.44542335510254 <- z -> 0.0
14:09:29 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:29 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:29 DEBUG opendrift.models.physics_methods:1050: min: 0.015093, mean: 2.279059, max: 8.063391
14:09:29 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.015093, mean: 2.279059, max: 8.063391
14:09:29 DEBUG opendrift.models.basemodel:813: 989 elements hit coastline, moving back to water
14:09:29 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:09:29 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:29 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:29 DEBUG opendrift.models.physics_methods:828: Advecting 36 of 6493 elements above 0.100m with wind-sheared ocean current (0.007596 m/s - 0.112950 m/s)
14:09:29 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:29 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:29 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08045624967916488
14:09:29 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:29 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:29 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:29 DEBUG opendrift.models.oceandrift:582: 643 elements penetrated seafloor, lifting up
14:09:29 DEBUG opendrift.models.oceandrift:600: 101 elements reached seafloor, set to bottom
14:09:29 DEBUG opendrift.models.basemodel:836: Lifting 101 elements to seafloor.
14:09:29 DEBUG opendrift.models.sedimentdrift:112: Settling 101 elements at seafloor
14:09:29 DEBUG opendrift.models.oceandrift:582: 541 elements penetrated seafloor, lifting up
14:09:29 DEBUG opendrift.models.oceandrift:600: 91 elements reached seafloor, set to bottom
14:09:29 DEBUG opendrift.models.basemodel:836: Lifting 91 elements to seafloor.
14:09:29 DEBUG opendrift.models.sedimentdrift:112: Settling 91 elements at seafloor
14:09:29 DEBUG opendrift.models.oceandrift:582: 459 elements penetrated seafloor, lifting up
14:09:29 DEBUG opendrift.models.oceandrift:600: 107 elements reached seafloor, set to bottom
14:09:29 DEBUG opendrift.models.basemodel:836: Lifting 107 elements to seafloor.
14:09:29 DEBUG opendrift.models.sedimentdrift:112: Settling 107 elements at seafloor
14:09:29 DEBUG opendrift.models.oceandrift:582: 422 elements penetrated seafloor, lifting up
14:09:29 DEBUG opendrift.models.oceandrift:600: 82 elements reached seafloor, set to bottom
14:09:29 DEBUG opendrift.models.basemodel:836: Lifting 82 elements to seafloor.
14:09:29 DEBUG opendrift.models.sedimentdrift:112: Settling 82 elements at seafloor
14:09:29 DEBUG opendrift.models.oceandrift:582: 416 elements penetrated seafloor, lifting up
14:09:29 DEBUG opendrift.models.oceandrift:600: 77 elements reached seafloor, set to bottom
14:09:29 DEBUG opendrift.models.basemodel:836: Lifting 77 elements to seafloor.
14:09:29 DEBUG opendrift.models.sedimentdrift:112: Settling 77 elements at seafloor
14:09:29 DEBUG opendrift.models.oceandrift:582: 388 elements penetrated seafloor, lifting up
14:09:29 DEBUG opendrift.models.oceandrift:600: 75 elements reached seafloor, set to bottom
14:09:29 DEBUG opendrift.models.basemodel:836: Lifting 75 elements to seafloor.
14:09:29 DEBUG opendrift.models.sedimentdrift:112: Settling 75 elements at seafloor
14:09:29 DEBUG opendrift.models.oceandrift:582: 383 elements penetrated seafloor, lifting up
14:09:29 DEBUG opendrift.models.oceandrift:600: 93 elements reached seafloor, set to bottom
14:09:29 DEBUG opendrift.models.basemodel:836: Lifting 93 elements to seafloor.
14:09:29 DEBUG opendrift.models.sedimentdrift:112: Settling 93 elements at seafloor
14:09:29 DEBUG opendrift.models.oceandrift:582: 390 elements penetrated seafloor, lifting up
14:09:29 DEBUG opendrift.models.oceandrift:600: 83 elements reached seafloor, set to bottom
14:09:29 DEBUG opendrift.models.basemodel:836: Lifting 83 elements to seafloor.
14:09:29 DEBUG opendrift.models.sedimentdrift:112: Settling 83 elements at seafloor
14:09:29 DEBUG opendrift.models.oceandrift:582: 343 elements penetrated seafloor, lifting up
14:09:29 DEBUG opendrift.models.oceandrift:600: 66 elements reached seafloor, set to bottom
14:09:29 DEBUG opendrift.models.basemodel:836: Lifting 66 elements to seafloor.
14:09:29 DEBUG opendrift.models.sedimentdrift:112: Settling 66 elements at seafloor
14:09:29 DEBUG opendrift.models.oceandrift:582: 318 elements penetrated seafloor, lifting up
14:09:29 DEBUG opendrift.models.oceandrift:600: 63 elements reached seafloor, set to bottom
14:09:29 DEBUG opendrift.models.basemodel:836: Lifting 63 elements to seafloor.
14:09:29 DEBUG opendrift.models.sedimentdrift:112: Settling 63 elements at seafloor
14:09:29 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:29 DEBUG opendrift.models.basemodel:2945: 6493 active elements (0 deactivated)
14:09:29 DEBUG opendrift.models.basemodel:1658: to be seeded: 3507, already seeded 6493
14:09:29 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:09:29 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:29 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:29 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:29 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:29 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:29 DEBUG opendrift.models.basemodel:1253: Data needed for 6528 elements
14:09:29 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:29 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 21:00:00 (before)
2023-09-02 22:00:00 (after)
14:09:29 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 21:00:00) in space (linearNDFast)
14:09:29 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:29 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:29 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:29 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:29 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:29 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:29 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5137 (max)
14:09:29 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:29 DEBUG opendrift.models.basemodel:1527: 6528 active elements
14:09:29 DEBUG opendrift.models.basemodel:1538: 59.094100966034176 <- latitude -> 59.19071447570237
14:09:29 DEBUG opendrift.models.basemodel:1543: 10.885544367064355 <- longitude -> 11.051040838005688
14:09:29 DEBUG opendrift.models.basemodel:1548: -14.847519874572754 <- z -> 0.0
14:09:29 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:29 DEBUG opendrift.models.basemodel:836: Lifting 596 elements to seafloor.
14:09:29 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:29 INFO opendrift.models.basemodel:2882: 2023-09-02 21:16:21.121579 - step 188 of 216 - 6528 active elements (0 deactivated)
14:09:29 DEBUG opendrift.models.basemodel:2888: 3472 elements scheduled.
14:09:29 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:29 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:29 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:29 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:29 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:29 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:29 DEBUG opendrift.models.basemodel:1253: Data needed for 6528 elements
14:09:29 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:29 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:29 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:29 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:29 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:29 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:29 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:29 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:29 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:29 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:29 DEBUG opendrift.models.basemodel:1253: Data needed for 6528 elements
14:09:29 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:29 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 21:00:00 (before)
2023-09-02 22:00:00 (after)
14:09:29 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:29 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:29 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:29 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:29 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:29 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:29 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x25x5) for time after (2023-09-02 22:00:00)
14:09:29 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 21:00:00) in space (linearNDFast)
14:09:29 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:29 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 22:00:00) in space (linearNDFast)
14:09:29 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4089 elements, expanding data 1
14:09:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 2
14:09:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
14:09:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4089 elements, expanding data 1
14:09:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 2
14:09:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
14:09:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4237 elements, expanding data 1
14:09:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 395 elements, expanding data 2
14:09:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 85 elements, expanding data 3
14:09:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
14:09:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4237 elements, expanding data 1
14:09:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 395 elements, expanding data 2
14:09:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 85 elements, expanding data 3
14:09:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
14:09:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4237 elements, expanding data 1
14:09:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 395 elements, expanding data 2
14:09:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 85 elements, expanding data 3
14:09:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
14:09:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4237 elements, expanding data 1
14:09:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 395 elements, expanding data 2
14:09:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 85 elements, expanding data 3
14:09:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
14:09:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4237 elements, expanding data 1
14:09:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 395 elements, expanding data 2
14:09:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 85 elements, expanding data 3
14:09:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
14:09:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5488 elements, expanding data 1
14:09:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2455 elements, expanding data 2
14:09:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
14:09:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5488 elements, expanding data 1
14:09:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2455 elements, expanding data 2
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5488 elements, expanding data 1
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2455 elements, expanding data 2
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5488 elements, expanding data 1
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2455 elements, expanding data 2
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5488 elements, expanding data 1
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2455 elements, expanding data 2
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4089 elements, expanding data 1
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 2
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4089 elements, expanding data 1
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 2
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4089 elements, expanding data 1
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 2
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4089 elements, expanding data 1
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 2
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4089 elements, expanding data 1
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 2
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
14:09:30 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 21:00:00, weight 0.73) and
after (2023-09-02 22:00:00, weight 0.27) in time
14:09:30 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.11446620962937 and -58.9489697100329 degrees.
14:09:30 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.11446620962937 and -58.9489697100329 degrees.
14:09:30 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:30 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:30 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:30 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:30 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:30 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:30 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.725368 (min) 1.11194 (max)
14:09:30 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.07245 (min) 0.670193 (max)
14:09:30 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000102734 (min) 0.000676789 (max)
14:09:30 DEBUG opendrift.models.basemodel:1524: x_wind: -6.02941 (min) 8.08592 (max)
14:09:30 DEBUG opendrift.models.basemodel:1524: y_wind: -7.81594 (min) 7.72544 (max)
14:09:30 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:30 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:30 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:30 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:30 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:30 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:30 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:30 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5137 (max)
14:09:30 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:30 DEBUG opendrift.models.basemodel:1527: 6528 active elements
14:09:30 DEBUG opendrift.models.basemodel:1538: 59.094100966034176 <- latitude -> 59.19071447570237
14:09:30 DEBUG opendrift.models.basemodel:1543: 10.885544367064355 <- longitude -> 11.051040838005688
14:09:30 DEBUG opendrift.models.basemodel:1548: -14.824423065185547 <- z -> 0.0
14:09:30 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:30 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:30 DEBUG opendrift.models.physics_methods:1050: min: 0.015357, mean: 2.201738, max: 7.232681
14:09:30 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.015357, mean: 2.201738, max: 7.232681
14:09:30 DEBUG opendrift.models.basemodel:813: 966 elements hit coastline, moving back to water
14:09:30 DEBUG opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
14:09:30 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:30 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:30 DEBUG opendrift.models.physics_methods:828: Advecting 38 of 6528 elements above 0.100m with wind-sheared ocean current (0.002370 m/s - 0.103626 m/s)
14:09:30 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:30 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:30 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.0647333811803627
14:09:30 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:30 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:30 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:30 DEBUG opendrift.models.oceandrift:582: 647 elements penetrated seafloor, lifting up
14:09:30 DEBUG opendrift.models.oceandrift:600: 125 elements reached seafloor, set to bottom
14:09:30 DEBUG opendrift.models.basemodel:836: Lifting 125 elements to seafloor.
14:09:30 DEBUG opendrift.models.sedimentdrift:112: Settling 125 elements at seafloor
14:09:30 DEBUG opendrift.models.oceandrift:582: 509 elements penetrated seafloor, lifting up
14:09:30 DEBUG opendrift.models.oceandrift:600: 89 elements reached seafloor, set to bottom
14:09:30 DEBUG opendrift.models.basemodel:836: Lifting 89 elements to seafloor.
14:09:30 DEBUG opendrift.models.sedimentdrift:112: Settling 89 elements at seafloor
14:09:30 DEBUG opendrift.models.oceandrift:582: 456 elements penetrated seafloor, lifting up
14:09:30 DEBUG opendrift.models.oceandrift:600: 112 elements reached seafloor, set to bottom
14:09:30 DEBUG opendrift.models.basemodel:836: Lifting 112 elements to seafloor.
14:09:30 DEBUG opendrift.models.sedimentdrift:112: Settling 112 elements at seafloor
14:09:30 DEBUG opendrift.models.oceandrift:582: 457 elements penetrated seafloor, lifting up
14:09:30 DEBUG opendrift.models.oceandrift:600: 109 elements reached seafloor, set to bottom
14:09:30 DEBUG opendrift.models.basemodel:836: Lifting 109 elements to seafloor.
14:09:30 DEBUG opendrift.models.sedimentdrift:112: Settling 109 elements at seafloor
14:09:30 DEBUG opendrift.models.oceandrift:582: 416 elements penetrated seafloor, lifting up
14:09:30 DEBUG opendrift.models.oceandrift:600: 78 elements reached seafloor, set to bottom
14:09:30 DEBUG opendrift.models.basemodel:836: Lifting 78 elements to seafloor.
14:09:30 DEBUG opendrift.models.sedimentdrift:112: Settling 78 elements at seafloor
14:09:30 DEBUG opendrift.models.oceandrift:582: 394 elements penetrated seafloor, lifting up
14:09:30 DEBUG opendrift.models.oceandrift:600: 84 elements reached seafloor, set to bottom
14:09:30 DEBUG opendrift.models.basemodel:836: Lifting 84 elements to seafloor.
14:09:30 DEBUG opendrift.models.sedimentdrift:112: Settling 84 elements at seafloor
14:09:30 DEBUG opendrift.models.oceandrift:582: 378 elements penetrated seafloor, lifting up
14:09:30 DEBUG opendrift.models.oceandrift:600: 77 elements reached seafloor, set to bottom
14:09:30 DEBUG opendrift.models.basemodel:836: Lifting 77 elements to seafloor.
14:09:30 DEBUG opendrift.models.sedimentdrift:112: Settling 77 elements at seafloor
14:09:30 DEBUG opendrift.models.oceandrift:582: 393 elements penetrated seafloor, lifting up
14:09:30 DEBUG opendrift.models.oceandrift:600: 69 elements reached seafloor, set to bottom
14:09:30 DEBUG opendrift.models.basemodel:836: Lifting 69 elements to seafloor.
14:09:30 DEBUG opendrift.models.sedimentdrift:112: Settling 69 elements at seafloor
14:09:30 DEBUG opendrift.models.oceandrift:582: 346 elements penetrated seafloor, lifting up
14:09:30 DEBUG opendrift.models.oceandrift:600: 81 elements reached seafloor, set to bottom
14:09:30 DEBUG opendrift.models.basemodel:836: Lifting 81 elements to seafloor.
14:09:30 DEBUG opendrift.models.sedimentdrift:112: Settling 81 elements at seafloor
14:09:30 DEBUG opendrift.models.oceandrift:582: 331 elements penetrated seafloor, lifting up
14:09:30 DEBUG opendrift.models.oceandrift:600: 81 elements reached seafloor, set to bottom
14:09:30 DEBUG opendrift.models.basemodel:836: Lifting 81 elements to seafloor.
14:09:30 DEBUG opendrift.models.sedimentdrift:112: Settling 81 elements at seafloor
14:09:30 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:30 DEBUG opendrift.models.basemodel:2945: 6528 active elements (0 deactivated)
14:09:30 DEBUG opendrift.models.basemodel:1658: to be seeded: 3472, already seeded 6528
14:09:30 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:09:30 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:30 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:30 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:30 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:30 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:30 DEBUG opendrift.models.basemodel:1253: Data needed for 6562 elements
14:09:30 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:30 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 21:00:00 (before)
2023-09-02 22:00:00 (after)
14:09:30 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 21:00:00) in space (linearNDFast)
14:09:30 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:30 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:30 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:30 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:30 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:30 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:30 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5455 (max)
14:09:30 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:30 DEBUG opendrift.models.basemodel:1527: 6562 active elements
14:09:30 DEBUG opendrift.models.basemodel:1538: 59.09335051612601 <- latitude -> 59.189746137256975
14:09:30 DEBUG opendrift.models.basemodel:1543: 10.887005918457504 <- longitude -> 11.048703286652845
14:09:30 DEBUG opendrift.models.basemodel:1548: -14.89821647644043 <- z -> 0.0
14:09:30 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:30 DEBUG opendrift.models.basemodel:836: Lifting 612 elements to seafloor.
14:09:30 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:30 INFO opendrift.models.basemodel:2882: 2023-09-02 21:26:21.121579 - step 189 of 216 - 6562 active elements (0 deactivated)
14:09:30 DEBUG opendrift.models.basemodel:2888: 3438 elements scheduled.
14:09:30 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:30 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:30 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:30 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:30 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:30 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:30 DEBUG opendrift.models.basemodel:1253: Data needed for 6562 elements
14:09:30 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:30 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:30 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:30 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:30 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:30 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:30 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:30 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:30 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:30 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:30 DEBUG opendrift.models.basemodel:1253: Data needed for 6562 elements
14:09:30 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:30 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 21:00:00 (before)
2023-09-02 22:00:00 (after)
14:09:30 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:30 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:30 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:30 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:30 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:30 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:30 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x25x5) for time after (2023-09-02 22:00:00)
14:09:30 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 21:00:00) in space (linearNDFast)
14:09:30 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:30 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 22:00:00) in space (linearNDFast)
14:09:30 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4106 elements, expanding data 1
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 96 elements, expanding data 2
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4106 elements, expanding data 1
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 96 elements, expanding data 2
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4246 elements, expanding data 1
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 399 elements, expanding data 2
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 89 elements, expanding data 3
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4246 elements, expanding data 1
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 399 elements, expanding data 2
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 89 elements, expanding data 3
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4246 elements, expanding data 1
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 399 elements, expanding data 2
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 89 elements, expanding data 3
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4246 elements, expanding data 1
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 399 elements, expanding data 2
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 89 elements, expanding data 3
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4246 elements, expanding data 1
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 399 elements, expanding data 2
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 89 elements, expanding data 3
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5535 elements, expanding data 1
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2451 elements, expanding data 2
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5535 elements, expanding data 1
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2451 elements, expanding data 2
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5535 elements, expanding data 1
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2451 elements, expanding data 2
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5535 elements, expanding data 1
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2451 elements, expanding data 2
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5535 elements, expanding data 1
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2451 elements, expanding data 2
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4106 elements, expanding data 1
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 96 elements, expanding data 2
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4106 elements, expanding data 1
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 96 elements, expanding data 2
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4106 elements, expanding data 1
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 96 elements, expanding data 2
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4106 elements, expanding data 1
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 96 elements, expanding data 2
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4106 elements, expanding data 1
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 96 elements, expanding data 2
14:09:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:30 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 21:00:00, weight 0.56) and
after (2023-09-02 22:00:00, weight 0.44) in time
14:09:30 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.113004649325056 and -58.95130725927845 degrees.
14:09:30 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.113004649325056 and -58.95130725927845 degrees.
14:09:30 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:30 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:30 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:30 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:30 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:30 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:30 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.716961 (min) 1.31624 (max)
14:09:30 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.957887 (min) 0.676327 (max)
14:09:30 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000111948 (min) 0.000702742 (max)
14:09:30 DEBUG opendrift.models.basemodel:1524: x_wind: -7.31211 (min) 6.73534 (max)
14:09:30 DEBUG opendrift.models.basemodel:1524: y_wind: -6.48836 (min) 7.64169 (max)
14:09:30 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:30 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:30 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:30 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:30 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:30 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:30 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:30 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5455 (max)
14:09:30 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:30 DEBUG opendrift.models.basemodel:1527: 6562 active elements
14:09:30 DEBUG opendrift.models.basemodel:1538: 59.09335051612601 <- latitude -> 59.189746137256975
14:09:30 DEBUG opendrift.models.basemodel:1543: 10.887005918457504 <- longitude -> 11.048703286652845
14:09:30 DEBUG opendrift.models.basemodel:1548: -14.89821647644043 <- z -> 0.0
14:09:30 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:30 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:30 DEBUG opendrift.models.physics_methods:1050: min: 0.023831, mean: 2.168571, max: 6.957807
14:09:30 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.023831, mean: 2.168571, max: 6.957807
14:09:30 DEBUG opendrift.models.basemodel:813: 931 elements hit coastline, moving back to water
14:09:30 DEBUG opendrift.models.basemodel:836: Lifting 227 elements to seafloor.
14:09:30 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:30 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:30 DEBUG opendrift.models.physics_methods:828: Advecting 34 of 6562 elements above 0.100m with wind-sheared ocean current (0.009072 m/s - 0.118320 m/s)
14:09:31 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:31 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:31 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.05990688782890319
14:09:31 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:31 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:31 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:31 DEBUG opendrift.models.oceandrift:582: 697 elements penetrated seafloor, lifting up
14:09:31 DEBUG opendrift.models.oceandrift:600: 116 elements reached seafloor, set to bottom
14:09:31 DEBUG opendrift.models.basemodel:836: Lifting 116 elements to seafloor.
14:09:31 DEBUG opendrift.models.sedimentdrift:112: Settling 116 elements at seafloor
14:09:31 DEBUG opendrift.models.oceandrift:582: 530 elements penetrated seafloor, lifting up
14:09:31 DEBUG opendrift.models.oceandrift:600: 101 elements reached seafloor, set to bottom
14:09:31 DEBUG opendrift.models.basemodel:836: Lifting 101 elements to seafloor.
14:09:31 DEBUG opendrift.models.sedimentdrift:112: Settling 101 elements at seafloor
14:09:31 DEBUG opendrift.models.oceandrift:582: 481 elements penetrated seafloor, lifting up
14:09:31 DEBUG opendrift.models.oceandrift:600: 94 elements reached seafloor, set to bottom
14:09:31 DEBUG opendrift.models.basemodel:836: Lifting 94 elements to seafloor.
14:09:31 DEBUG opendrift.models.sedimentdrift:112: Settling 94 elements at seafloor
14:09:31 DEBUG opendrift.models.oceandrift:582: 417 elements penetrated seafloor, lifting up
14:09:31 DEBUG opendrift.models.oceandrift:600: 104 elements reached seafloor, set to bottom
14:09:31 DEBUG opendrift.models.basemodel:836: Lifting 104 elements to seafloor.
14:09:31 DEBUG opendrift.models.sedimentdrift:112: Settling 104 elements at seafloor
14:09:31 DEBUG opendrift.models.oceandrift:582: 435 elements penetrated seafloor, lifting up
14:09:31 DEBUG opendrift.models.oceandrift:600: 95 elements reached seafloor, set to bottom
14:09:31 DEBUG opendrift.models.basemodel:836: Lifting 95 elements to seafloor.
14:09:31 DEBUG opendrift.models.sedimentdrift:112: Settling 95 elements at seafloor
14:09:31 DEBUG opendrift.models.oceandrift:582: 406 elements penetrated seafloor, lifting up
14:09:31 DEBUG opendrift.models.oceandrift:600: 95 elements reached seafloor, set to bottom
14:09:31 DEBUG opendrift.models.basemodel:836: Lifting 95 elements to seafloor.
14:09:31 DEBUG opendrift.models.sedimentdrift:112: Settling 95 elements at seafloor
14:09:31 DEBUG opendrift.models.oceandrift:582: 360 elements penetrated seafloor, lifting up
14:09:31 DEBUG opendrift.models.oceandrift:600: 68 elements reached seafloor, set to bottom
14:09:31 DEBUG opendrift.models.basemodel:836: Lifting 68 elements to seafloor.
14:09:31 DEBUG opendrift.models.sedimentdrift:112: Settling 68 elements at seafloor
14:09:31 DEBUG opendrift.models.oceandrift:582: 382 elements penetrated seafloor, lifting up
14:09:31 DEBUG opendrift.models.oceandrift:600: 68 elements reached seafloor, set to bottom
14:09:31 DEBUG opendrift.models.basemodel:836: Lifting 68 elements to seafloor.
14:09:31 DEBUG opendrift.models.sedimentdrift:112: Settling 68 elements at seafloor
14:09:31 DEBUG opendrift.models.oceandrift:582: 350 elements penetrated seafloor, lifting up
14:09:31 DEBUG opendrift.models.oceandrift:600: 66 elements reached seafloor, set to bottom
14:09:31 DEBUG opendrift.models.basemodel:836: Lifting 66 elements to seafloor.
14:09:31 DEBUG opendrift.models.sedimentdrift:112: Settling 66 elements at seafloor
14:09:31 DEBUG opendrift.models.oceandrift:582: 332 elements penetrated seafloor, lifting up
14:09:31 DEBUG opendrift.models.oceandrift:600: 84 elements reached seafloor, set to bottom
14:09:31 DEBUG opendrift.models.basemodel:836: Lifting 84 elements to seafloor.
14:09:31 DEBUG opendrift.models.sedimentdrift:112: Settling 84 elements at seafloor
14:09:31 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:31 DEBUG opendrift.models.basemodel:2945: 6562 active elements (0 deactivated)
14:09:31 DEBUG opendrift.models.basemodel:1658: to be seeded: 3438, already seeded 6562
14:09:31 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:09:31 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:31 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:31 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:31 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:31 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:31 DEBUG opendrift.models.basemodel:1253: Data needed for 6597 elements
14:09:31 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:31 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 21:00:00 (before)
2023-09-02 22:00:00 (after)
14:09:31 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 21:00:00) in space (linearNDFast)
14:09:31 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:31 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:31 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:31 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:31 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:31 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:31 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4633 (max)
14:09:31 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:31 DEBUG opendrift.models.basemodel:1527: 6597 active elements
14:09:31 DEBUG opendrift.models.basemodel:1538: 59.09540297965681 <- latitude -> 59.18950890803554
14:09:31 DEBUG opendrift.models.basemodel:1543: 10.8870059184575 <- longitude -> 11.047956361160903
14:09:31 DEBUG opendrift.models.basemodel:1548: -14.84330867767334 <- z -> 0.0
14:09:31 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:31 DEBUG opendrift.models.basemodel:836: Lifting 564 elements to seafloor.
14:09:31 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:31 INFO opendrift.models.basemodel:2882: 2023-09-02 21:36:21.121579 - step 190 of 216 - 6597 active elements (0 deactivated)
14:09:31 DEBUG opendrift.models.basemodel:2888: 3403 elements scheduled.
14:09:31 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:31 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:31 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:31 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:31 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:31 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:31 DEBUG opendrift.models.basemodel:1253: Data needed for 6597 elements
14:09:31 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:31 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:31 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:31 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:31 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:31 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:31 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:31 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:31 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:31 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:31 DEBUG opendrift.models.basemodel:1253: Data needed for 6597 elements
14:09:31 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:31 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 21:00:00 (before)
2023-09-02 22:00:00 (after)
14:09:31 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:31 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:31 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:31 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:31 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:31 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:31 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x26x5) for time after (2023-09-02 22:00:00)
14:09:31 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 21:00:00) in space (linearNDFast)
14:09:31 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:31 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 22:00:00) in space (linearNDFast)
14:09:31 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4125 elements, expanding data 1
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 2
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4125 elements, expanding data 1
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 2
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4257 elements, expanding data 1
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 397 elements, expanding data 2
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 84 elements, expanding data 3
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4257 elements, expanding data 1
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 397 elements, expanding data 2
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 84 elements, expanding data 3
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4257 elements, expanding data 1
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 397 elements, expanding data 2
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 84 elements, expanding data 3
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4257 elements, expanding data 1
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 397 elements, expanding data 2
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 84 elements, expanding data 3
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4257 elements, expanding data 1
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 397 elements, expanding data 2
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 84 elements, expanding data 3
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5570 elements, expanding data 1
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2434 elements, expanding data 2
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5570 elements, expanding data 1
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2434 elements, expanding data 2
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5570 elements, expanding data 1
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2434 elements, expanding data 2
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5570 elements, expanding data 1
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2434 elements, expanding data 2
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5570 elements, expanding data 1
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2434 elements, expanding data 2
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4125 elements, expanding data 1
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 2
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4125 elements, expanding data 1
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 2
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4125 elements, expanding data 1
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 2
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4125 elements, expanding data 1
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 2
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4125 elements, expanding data 1
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 2
14:09:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:31 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 21:00:00, weight 0.39) and
after (2023-09-02 22:00:00, weight 0.61) in time
14:09:31 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.11300465980506 and -58.95205420036392 degrees.
14:09:31 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.11300465980506 and -58.95205420036392 degrees.
14:09:31 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:31 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:31 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:31 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:31 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:31 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:31 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.770268 (min) 1.25304 (max)
14:09:31 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.888795 (min) 0.73834 (max)
14:09:31 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -9.15184e-05 (min) 0.000631228 (max)
14:09:31 DEBUG opendrift.models.basemodel:1524: x_wind: -9.16681 (min) 6.25457 (max)
14:09:31 DEBUG opendrift.models.basemodel:1524: y_wind: -8.09464 (min) 7.41506 (max)
14:09:31 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:31 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:31 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:31 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:31 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:31 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:31 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:31 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4633 (max)
14:09:31 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:31 DEBUG opendrift.models.basemodel:1527: 6597 active elements
14:09:31 DEBUG opendrift.models.basemodel:1538: 59.09540297965681 <- latitude -> 59.18950890803554
14:09:31 DEBUG opendrift.models.basemodel:1543: 10.8870059184575 <- longitude -> 11.047956361160903
14:09:31 DEBUG opendrift.models.basemodel:1548: -14.787724494934082 <- z -> 0.0
14:09:31 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:31 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:31 DEBUG opendrift.models.physics_methods:1050: min: 0.025760, mean: 2.217381, max: 8.050978
14:09:31 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.025760, mean: 2.217381, max: 8.050978
14:09:31 DEBUG opendrift.models.basemodel:813: 904 elements hit coastline, moving back to water
14:09:31 DEBUG opendrift.models.basemodel:836: Lifting 223 elements to seafloor.
14:09:31 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:31 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:31 DEBUG opendrift.models.physics_methods:828: Advecting 36 of 6597 elements above 0.100m with wind-sheared ocean current (0.007006 m/s - 0.097006 m/s)
14:09:31 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:31 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:31 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.0802087390104103
14:09:31 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:31 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:31 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:31 DEBUG opendrift.models.oceandrift:582: 721 elements penetrated seafloor, lifting up
14:09:31 DEBUG opendrift.models.oceandrift:600: 126 elements reached seafloor, set to bottom
14:09:31 DEBUG opendrift.models.basemodel:836: Lifting 126 elements to seafloor.
14:09:31 DEBUG opendrift.models.sedimentdrift:112: Settling 126 elements at seafloor
14:09:31 DEBUG opendrift.models.oceandrift:582: 571 elements penetrated seafloor, lifting up
14:09:31 DEBUG opendrift.models.oceandrift:600: 111 elements reached seafloor, set to bottom
14:09:31 DEBUG opendrift.models.basemodel:836: Lifting 111 elements to seafloor.
14:09:31 DEBUG opendrift.models.sedimentdrift:112: Settling 111 elements at seafloor
14:09:31 DEBUG opendrift.models.oceandrift:582: 477 elements penetrated seafloor, lifting up
14:09:31 DEBUG opendrift.models.oceandrift:600: 92 elements reached seafloor, set to bottom
14:09:31 DEBUG opendrift.models.basemodel:836: Lifting 92 elements to seafloor.
14:09:31 DEBUG opendrift.models.sedimentdrift:112: Settling 92 elements at seafloor
14:09:31 DEBUG opendrift.models.oceandrift:582: 444 elements penetrated seafloor, lifting up
14:09:31 DEBUG opendrift.models.oceandrift:600: 89 elements reached seafloor, set to bottom
14:09:31 DEBUG opendrift.models.basemodel:836: Lifting 89 elements to seafloor.
14:09:31 DEBUG opendrift.models.sedimentdrift:112: Settling 89 elements at seafloor
14:09:31 DEBUG opendrift.models.oceandrift:582: 455 elements penetrated seafloor, lifting up
14:09:31 DEBUG opendrift.models.oceandrift:600: 86 elements reached seafloor, set to bottom
14:09:31 DEBUG opendrift.models.basemodel:836: Lifting 86 elements to seafloor.
14:09:31 DEBUG opendrift.models.sedimentdrift:112: Settling 86 elements at seafloor
14:09:31 DEBUG opendrift.models.oceandrift:582: 423 elements penetrated seafloor, lifting up
14:09:31 DEBUG opendrift.models.oceandrift:600: 88 elements reached seafloor, set to bottom
14:09:31 DEBUG opendrift.models.basemodel:836: Lifting 88 elements to seafloor.
14:09:31 DEBUG opendrift.models.sedimentdrift:112: Settling 88 elements at seafloor
14:09:31 DEBUG opendrift.models.oceandrift:582: 397 elements penetrated seafloor, lifting up
14:09:31 DEBUG opendrift.models.oceandrift:600: 75 elements reached seafloor, set to bottom
14:09:31 DEBUG opendrift.models.basemodel:836: Lifting 75 elements to seafloor.
14:09:31 DEBUG opendrift.models.sedimentdrift:112: Settling 75 elements at seafloor
14:09:31 DEBUG opendrift.models.oceandrift:582: 379 elements penetrated seafloor, lifting up
14:09:31 DEBUG opendrift.models.oceandrift:600: 62 elements reached seafloor, set to bottom
14:09:31 DEBUG opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
14:09:31 DEBUG opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
14:09:31 DEBUG opendrift.models.oceandrift:582: 383 elements penetrated seafloor, lifting up
14:09:31 DEBUG opendrift.models.oceandrift:600: 64 elements reached seafloor, set to bottom
14:09:31 DEBUG opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
14:09:31 DEBUG opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
14:09:31 DEBUG opendrift.models.oceandrift:582: 358 elements penetrated seafloor, lifting up
14:09:31 DEBUG opendrift.models.oceandrift:600: 79 elements reached seafloor, set to bottom
14:09:31 DEBUG opendrift.models.basemodel:836: Lifting 79 elements to seafloor.
14:09:31 DEBUG opendrift.models.sedimentdrift:112: Settling 79 elements at seafloor
14:09:31 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:31 DEBUG opendrift.models.basemodel:2945: 6597 active elements (0 deactivated)
14:09:31 DEBUG opendrift.models.basemodel:1658: to be seeded: 3403, already seeded 6597
14:09:31 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:09:31 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:31 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:31 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:31 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:31 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:31 DEBUG opendrift.models.basemodel:1253: Data needed for 6632 elements
14:09:31 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:31 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 21:00:00 (before)
2023-09-02 22:00:00 (after)
14:09:31 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 21:00:00) in space (linearNDFast)
14:09:31 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:32 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:32 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:32 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:32 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:32 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:32 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4977 (max)
14:09:32 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:32 DEBUG opendrift.models.basemodel:1527: 6632 active elements
14:09:32 DEBUG opendrift.models.basemodel:1538: 59.094365066892564 <- latitude -> 59.19016213967926
14:09:32 DEBUG opendrift.models.basemodel:1543: 10.88632313090863 <- longitude -> 11.04750601541939
14:09:32 DEBUG opendrift.models.basemodel:1548: -14.628588905334473 <- z -> 0.0
14:09:32 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:32 DEBUG opendrift.models.basemodel:836: Lifting 597 elements to seafloor.
14:09:32 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:32 INFO opendrift.models.basemodel:2882: 2023-09-02 21:46:21.121579 - step 191 of 216 - 6632 active elements (0 deactivated)
14:09:32 DEBUG opendrift.models.basemodel:2888: 3368 elements scheduled.
14:09:32 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:32 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:32 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:32 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:32 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:32 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:32 DEBUG opendrift.models.basemodel:1253: Data needed for 6632 elements
14:09:32 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:32 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:32 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:32 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:32 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:32 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:32 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:32 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:32 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:32 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:32 DEBUG opendrift.models.basemodel:1253: Data needed for 6632 elements
14:09:32 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:32 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 21:00:00 (before)
2023-09-02 22:00:00 (after)
14:09:32 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:32 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:32 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:32 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:32 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:32 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:32 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x26x5) for time after (2023-09-02 22:00:00)
14:09:32 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 21:00:00) in space (linearNDFast)
14:09:32 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:32 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 22:00:00) in space (linearNDFast)
14:09:32 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4157 elements, expanding data 1
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 95 elements, expanding data 2
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4157 elements, expanding data 1
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 95 elements, expanding data 2
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4290 elements, expanding data 1
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 408 elements, expanding data 2
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 3
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4290 elements, expanding data 1
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 408 elements, expanding data 2
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 3
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4290 elements, expanding data 1
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 408 elements, expanding data 2
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 3
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4290 elements, expanding data 1
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 408 elements, expanding data 2
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 3
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4290 elements, expanding data 1
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 408 elements, expanding data 2
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 3
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5595 elements, expanding data 1
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2437 elements, expanding data 2
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5595 elements, expanding data 1
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2437 elements, expanding data 2
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5595 elements, expanding data 1
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2437 elements, expanding data 2
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5595 elements, expanding data 1
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2437 elements, expanding data 2
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5595 elements, expanding data 1
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2437 elements, expanding data 2
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4157 elements, expanding data 1
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 95 elements, expanding data 2
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4157 elements, expanding data 1
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 95 elements, expanding data 2
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4157 elements, expanding data 1
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 95 elements, expanding data 2
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4157 elements, expanding data 1
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 95 elements, expanding data 2
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4157 elements, expanding data 1
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 95 elements, expanding data 2
14:09:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:32 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 21:00:00, weight 0.23) and
after (2023-09-02 22:00:00, weight 0.77) in time
14:09:32 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.11368744375817 and -58.95250454054387 degrees.
14:09:32 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.11368744375817 and -58.95250454054387 degrees.
14:09:32 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:32 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:32 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:32 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:32 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:32 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:32 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.790944 (min) 1.1834 (max)
14:09:32 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.981108 (min) 0.746212 (max)
14:09:32 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.00010392 (min) 0.000758947 (max)
14:09:32 DEBUG opendrift.models.basemodel:1524: x_wind: -9.11679 (min) 6.71575 (max)
14:09:32 DEBUG opendrift.models.basemodel:1524: y_wind: -7.88694 (min) 8.2721 (max)
14:09:32 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:32 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:32 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:32 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:32 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:32 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:32 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:32 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4977 (max)
14:09:32 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:32 DEBUG opendrift.models.basemodel:1527: 6632 active elements
14:09:32 DEBUG opendrift.models.basemodel:1538: 59.094365066892564 <- latitude -> 59.19016213967926
14:09:32 DEBUG opendrift.models.basemodel:1543: 10.88632313090863 <- longitude -> 11.04750601541939
14:09:32 DEBUG opendrift.models.basemodel:1548: -14.628588905334473 <- z -> 0.0
14:09:32 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:32 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:32 DEBUG opendrift.models.physics_methods:1050: min: 0.033210, mean: 2.273776, max: 7.860144
14:09:32 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.033210, mean: 2.273776, max: 7.860144
14:09:32 DEBUG opendrift.models.basemodel:813: 910 elements hit coastline, moving back to water
14:09:32 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
14:09:32 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:32 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:32 DEBUG opendrift.models.physics_methods:828: Advecting 36 of 6632 elements above 0.100m with wind-sheared ocean current (0.003190 m/s - 0.106946 m/s)
14:09:32 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:32 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:32 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.0764516050954628
14:09:32 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:32 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:32 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:32 DEBUG opendrift.models.oceandrift:582: 732 elements penetrated seafloor, lifting up
14:09:32 DEBUG opendrift.models.oceandrift:600: 107 elements reached seafloor, set to bottom
14:09:32 DEBUG opendrift.models.basemodel:836: Lifting 107 elements to seafloor.
14:09:32 DEBUG opendrift.models.sedimentdrift:112: Settling 107 elements at seafloor
14:09:32 DEBUG opendrift.models.oceandrift:582: 536 elements penetrated seafloor, lifting up
14:09:32 DEBUG opendrift.models.oceandrift:600: 105 elements reached seafloor, set to bottom
14:09:32 DEBUG opendrift.models.basemodel:836: Lifting 105 elements to seafloor.
14:09:32 DEBUG opendrift.models.sedimentdrift:112: Settling 105 elements at seafloor
14:09:32 DEBUG opendrift.models.oceandrift:582: 515 elements penetrated seafloor, lifting up
14:09:32 DEBUG opendrift.models.oceandrift:600: 95 elements reached seafloor, set to bottom
14:09:32 DEBUG opendrift.models.basemodel:836: Lifting 95 elements to seafloor.
14:09:32 DEBUG opendrift.models.sedimentdrift:112: Settling 95 elements at seafloor
14:09:32 DEBUG opendrift.models.oceandrift:582: 432 elements penetrated seafloor, lifting up
14:09:32 DEBUG opendrift.models.oceandrift:600: 88 elements reached seafloor, set to bottom
14:09:32 DEBUG opendrift.models.basemodel:836: Lifting 88 elements to seafloor.
14:09:32 DEBUG opendrift.models.sedimentdrift:112: Settling 88 elements at seafloor
14:09:32 DEBUG opendrift.models.oceandrift:582: 455 elements penetrated seafloor, lifting up
14:09:32 DEBUG opendrift.models.oceandrift:600: 85 elements reached seafloor, set to bottom
14:09:32 DEBUG opendrift.models.basemodel:836: Lifting 85 elements to seafloor.
14:09:32 DEBUG opendrift.models.sedimentdrift:112: Settling 85 elements at seafloor
14:09:32 DEBUG opendrift.models.oceandrift:582: 422 elements penetrated seafloor, lifting up
14:09:32 DEBUG opendrift.models.oceandrift:600: 87 elements reached seafloor, set to bottom
14:09:32 DEBUG opendrift.models.basemodel:836: Lifting 87 elements to seafloor.
14:09:32 DEBUG opendrift.models.sedimentdrift:112: Settling 87 elements at seafloor
14:09:32 DEBUG opendrift.models.oceandrift:582: 426 elements penetrated seafloor, lifting up
14:09:32 DEBUG opendrift.models.oceandrift:600: 87 elements reached seafloor, set to bottom
14:09:32 DEBUG opendrift.models.basemodel:836: Lifting 87 elements to seafloor.
14:09:32 DEBUG opendrift.models.sedimentdrift:112: Settling 87 elements at seafloor
14:09:32 DEBUG opendrift.models.oceandrift:582: 392 elements penetrated seafloor, lifting up
14:09:32 DEBUG opendrift.models.oceandrift:600: 75 elements reached seafloor, set to bottom
14:09:32 DEBUG opendrift.models.basemodel:836: Lifting 75 elements to seafloor.
14:09:32 DEBUG opendrift.models.sedimentdrift:112: Settling 75 elements at seafloor
14:09:32 DEBUG opendrift.models.oceandrift:582: 344 elements penetrated seafloor, lifting up
14:09:32 DEBUG opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
14:09:32 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
14:09:32 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
14:09:32 DEBUG opendrift.models.oceandrift:582: 380 elements penetrated seafloor, lifting up
14:09:32 DEBUG opendrift.models.oceandrift:600: 87 elements reached seafloor, set to bottom
14:09:32 DEBUG opendrift.models.basemodel:836: Lifting 87 elements to seafloor.
14:09:32 DEBUG opendrift.models.sedimentdrift:112: Settling 87 elements at seafloor
14:09:32 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:32 DEBUG opendrift.models.basemodel:2945: 6632 active elements (0 deactivated)
14:09:32 DEBUG opendrift.models.basemodel:1658: to be seeded: 3368, already seeded 6632
14:09:32 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:09:32 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:32 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:32 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:32 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:32 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:32 DEBUG opendrift.models.basemodel:1253: Data needed for 6667 elements
14:09:32 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:32 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 21:00:00 (before)
2023-09-02 22:00:00 (after)
14:09:32 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 21:00:00) in space (linearNDFast)
14:09:32 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:32 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:32 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:32 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:32 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:32 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:32 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4572 (max)
14:09:32 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:32 DEBUG opendrift.models.basemodel:1527: 6667 active elements
14:09:32 DEBUG opendrift.models.basemodel:1538: 59.094108105443 <- latitude -> 59.190706137095255
14:09:32 DEBUG opendrift.models.basemodel:1543: 10.88579809067919 <- longitude -> 11.04639423182442
14:09:32 DEBUG opendrift.models.basemodel:1548: -14.995098639170374 <- z -> 0.0
14:09:32 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:32 DEBUG opendrift.models.basemodel:836: Lifting 598 elements to seafloor.
14:09:32 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:32 INFO opendrift.models.basemodel:2882: 2023-09-02 21:56:21.121579 - step 192 of 216 - 6667 active elements (0 deactivated)
14:09:32 DEBUG opendrift.models.basemodel:2888: 3333 elements scheduled.
14:09:32 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:32 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:32 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:32 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:32 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:32 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:32 DEBUG opendrift.models.basemodel:1253: Data needed for 6667 elements
14:09:32 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:32 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:32 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:32 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:32 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:32 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:32 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:32 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:32 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:32 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:32 DEBUG opendrift.models.basemodel:1253: Data needed for 6667 elements
14:09:32 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:32 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 21:00:00 (before)
2023-09-02 22:00:00 (after)
14:09:33 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:33 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:33 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:33 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:33 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:33 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:33 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x26x5) for time after (2023-09-02 22:00:00)
14:09:33 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 21:00:00) in space (linearNDFast)
14:09:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:33 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 22:00:00) in space (linearNDFast)
14:09:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4182 elements, expanding data 1
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 96 elements, expanding data 2
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4182 elements, expanding data 1
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 96 elements, expanding data 2
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4308 elements, expanding data 1
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 410 elements, expanding data 2
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 92 elements, expanding data 3
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4308 elements, expanding data 1
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 410 elements, expanding data 2
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 92 elements, expanding data 3
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4308 elements, expanding data 1
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 410 elements, expanding data 2
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 92 elements, expanding data 3
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4308 elements, expanding data 1
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 410 elements, expanding data 2
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 92 elements, expanding data 3
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4308 elements, expanding data 1
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 410 elements, expanding data 2
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 92 elements, expanding data 3
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5611 elements, expanding data 1
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2428 elements, expanding data 2
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5611 elements, expanding data 1
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2428 elements, expanding data 2
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5611 elements, expanding data 1
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2428 elements, expanding data 2
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5611 elements, expanding data 1
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2428 elements, expanding data 2
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5611 elements, expanding data 1
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2428 elements, expanding data 2
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4182 elements, expanding data 1
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 96 elements, expanding data 2
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4182 elements, expanding data 1
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 96 elements, expanding data 2
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4182 elements, expanding data 1
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 96 elements, expanding data 2
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4182 elements, expanding data 1
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 96 elements, expanding data 2
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4182 elements, expanding data 1
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 96 elements, expanding data 2
14:09:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:33 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 21:00:00, weight 0.06) and
after (2023-09-02 22:00:00, weight 0.94) in time
14:09:33 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.1142124884444 and -58.95361632655677 degrees.
14:09:33 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.1142124884444 and -58.95361632655677 degrees.
14:09:33 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:33 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:33 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:33 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:33 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:33 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:33 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.810738 (min) 1.09294 (max)
14:09:33 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.121 (min) 0.792728 (max)
14:09:33 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000100168 (min) 0.000598939 (max)
14:09:33 DEBUG opendrift.models.basemodel:1524: x_wind: -9.25603 (min) 5.32219 (max)
14:09:33 DEBUG opendrift.models.basemodel:1524: y_wind: -6.51532 (min) 7.52312 (max)
14:09:33 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:33 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:33 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:33 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:33 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:33 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:33 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:33 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4572 (max)
14:09:33 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:33 DEBUG opendrift.models.basemodel:1527: 6667 active elements
14:09:33 DEBUG opendrift.models.basemodel:1538: 59.094108105443 <- latitude -> 59.190706137095255
14:09:33 DEBUG opendrift.models.basemodel:1543: 10.88579809067919 <- longitude -> 11.04639423182442
14:09:33 DEBUG opendrift.models.basemodel:1548: -14.995098639170374 <- z -> 0.0
14:09:33 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:33 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:33 DEBUG opendrift.models.physics_methods:1050: min: 0.010796, mean: 2.475652, max: 8.103387
14:09:33 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.010796, mean: 2.475652, max: 8.103387
14:09:33 DEBUG opendrift.models.basemodel:813: 904 elements hit coastline, moving back to water
14:09:33 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:09:33 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:33 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:33 DEBUG opendrift.models.physics_methods:828: Advecting 36 of 6667 elements above 0.100m with wind-sheared ocean current (0.003862 m/s - 0.117032 m/s)
14:09:33 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:33 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:33 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.0812563382001686
14:09:33 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:33 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:33 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:33 DEBUG opendrift.models.oceandrift:582: 753 elements penetrated seafloor, lifting up
14:09:33 DEBUG opendrift.models.oceandrift:600: 100 elements reached seafloor, set to bottom
14:09:33 DEBUG opendrift.models.basemodel:836: Lifting 100 elements to seafloor.
14:09:33 DEBUG opendrift.models.sedimentdrift:112: Settling 100 elements at seafloor
14:09:33 DEBUG opendrift.models.oceandrift:582: 546 elements penetrated seafloor, lifting up
14:09:33 DEBUG opendrift.models.oceandrift:600: 102 elements reached seafloor, set to bottom
14:09:33 DEBUG opendrift.models.basemodel:836: Lifting 102 elements to seafloor.
14:09:33 DEBUG opendrift.models.sedimentdrift:112: Settling 102 elements at seafloor
14:09:33 DEBUG opendrift.models.oceandrift:582: 519 elements penetrated seafloor, lifting up
14:09:33 DEBUG opendrift.models.oceandrift:600: 69 elements reached seafloor, set to bottom
14:09:33 DEBUG opendrift.models.basemodel:836: Lifting 69 elements to seafloor.
14:09:33 DEBUG opendrift.models.sedimentdrift:112: Settling 69 elements at seafloor
14:09:33 DEBUG opendrift.models.oceandrift:582: 474 elements penetrated seafloor, lifting up
14:09:33 DEBUG opendrift.models.oceandrift:600: 83 elements reached seafloor, set to bottom
14:09:33 DEBUG opendrift.models.basemodel:836: Lifting 83 elements to seafloor.
14:09:33 DEBUG opendrift.models.sedimentdrift:112: Settling 83 elements at seafloor
14:09:33 DEBUG opendrift.models.oceandrift:582: 456 elements penetrated seafloor, lifting up
14:09:33 DEBUG opendrift.models.oceandrift:600: 76 elements reached seafloor, set to bottom
14:09:33 DEBUG opendrift.models.basemodel:836: Lifting 76 elements to seafloor.
14:09:33 DEBUG opendrift.models.sedimentdrift:112: Settling 76 elements at seafloor
14:09:33 DEBUG opendrift.models.oceandrift:582: 445 elements penetrated seafloor, lifting up
14:09:33 DEBUG opendrift.models.oceandrift:600: 76 elements reached seafloor, set to bottom
14:09:33 DEBUG opendrift.models.basemodel:836: Lifting 76 elements to seafloor.
14:09:33 DEBUG opendrift.models.sedimentdrift:112: Settling 76 elements at seafloor
14:09:33 DEBUG opendrift.models.oceandrift:582: 423 elements penetrated seafloor, lifting up
14:09:33 DEBUG opendrift.models.oceandrift:600: 80 elements reached seafloor, set to bottom
14:09:33 DEBUG opendrift.models.basemodel:836: Lifting 80 elements to seafloor.
14:09:33 DEBUG opendrift.models.sedimentdrift:112: Settling 80 elements at seafloor
14:09:33 DEBUG opendrift.models.oceandrift:582: 430 elements penetrated seafloor, lifting up
14:09:33 DEBUG opendrift.models.oceandrift:600: 77 elements reached seafloor, set to bottom
14:09:33 DEBUG opendrift.models.basemodel:836: Lifting 77 elements to seafloor.
14:09:33 DEBUG opendrift.models.sedimentdrift:112: Settling 77 elements at seafloor
14:09:33 DEBUG opendrift.models.oceandrift:582: 405 elements penetrated seafloor, lifting up
14:09:33 DEBUG opendrift.models.oceandrift:600: 77 elements reached seafloor, set to bottom
14:09:33 DEBUG opendrift.models.basemodel:836: Lifting 77 elements to seafloor.
14:09:33 DEBUG opendrift.models.sedimentdrift:112: Settling 77 elements at seafloor
14:09:33 DEBUG opendrift.models.oceandrift:582: 390 elements penetrated seafloor, lifting up
14:09:33 DEBUG opendrift.models.oceandrift:600: 78 elements reached seafloor, set to bottom
14:09:33 DEBUG opendrift.models.basemodel:836: Lifting 78 elements to seafloor.
14:09:33 DEBUG opendrift.models.sedimentdrift:112: Settling 78 elements at seafloor
14:09:33 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:33 DEBUG opendrift.models.basemodel:2945: 6667 active elements (0 deactivated)
14:09:33 DEBUG opendrift.models.basemodel:1658: to be seeded: 3333, already seeded 6667
14:09:33 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:09:33 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:33 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:33 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:33 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:33 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:33 DEBUG opendrift.models.basemodel:1253: Data needed for 6701 elements
14:09:33 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:33 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 22:00:00 (before)
2023-09-02 23:00:00 (after)
14:09:33 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 22:00:00) in space (linearNDFast)
14:09:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:33 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:33 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:33 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:33 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:33 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:33 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5119 (max)
14:09:33 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:33 DEBUG opendrift.models.basemodel:1527: 6701 active elements
14:09:33 DEBUG opendrift.models.basemodel:1538: 59.09444755927038 <- latitude -> 59.18920573514312
14:09:33 DEBUG opendrift.models.basemodel:1543: 10.886297616188374 <- longitude -> 11.044980315912365
14:09:33 DEBUG opendrift.models.basemodel:1548: -14.805420760892877 <- z -> 0.0
14:09:33 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:33 DEBUG opendrift.models.basemodel:836: Lifting 581 elements to seafloor.
14:09:33 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:33 INFO opendrift.models.basemodel:2882: 2023-09-02 22:06:21.121579 - step 193 of 216 - 6701 active elements (0 deactivated)
14:09:33 DEBUG opendrift.models.basemodel:2888: 3299 elements scheduled.
14:09:33 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:33 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:33 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:33 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:33 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:33 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:33 DEBUG opendrift.models.basemodel:1253: Data needed for 6701 elements
14:09:33 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:33 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:33 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:33 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:33 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:33 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:33 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:33 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:33 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:33 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:33 DEBUG opendrift.models.basemodel:1253: Data needed for 6701 elements
14:09:33 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:33 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 22:00:00 (before)
2023-09-02 23:00:00 (after)
14:09:34 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:34 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:34 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:34 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:34 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:34 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:34 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x26x5) for time after (2023-09-02 23:00:00)
14:09:34 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 22:00:00) in space (linearNDFast)
14:09:34 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:34 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 23:00:00) in space (linearNDFast)
14:09:34 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4185 elements, expanding data 1
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 100 elements, expanding data 2
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4185 elements, expanding data 1
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 100 elements, expanding data 2
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4320 elements, expanding data 1
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 406 elements, expanding data 2
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 92 elements, expanding data 3
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4320 elements, expanding data 1
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 406 elements, expanding data 2
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 92 elements, expanding data 3
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4320 elements, expanding data 1
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 406 elements, expanding data 2
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 92 elements, expanding data 3
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4320 elements, expanding data 1
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 406 elements, expanding data 2
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 92 elements, expanding data 3
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4320 elements, expanding data 1
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 406 elements, expanding data 2
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 92 elements, expanding data 3
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5654 elements, expanding data 1
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2425 elements, expanding data 2
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5654 elements, expanding data 1
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2425 elements, expanding data 2
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5654 elements, expanding data 1
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2425 elements, expanding data 2
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5654 elements, expanding data 1
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2425 elements, expanding data 2
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5654 elements, expanding data 1
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2425 elements, expanding data 2
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4185 elements, expanding data 1
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 100 elements, expanding data 2
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4185 elements, expanding data 1
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 100 elements, expanding data 2
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4185 elements, expanding data 1
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 100 elements, expanding data 2
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4185 elements, expanding data 1
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 100 elements, expanding data 2
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4185 elements, expanding data 1
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 100 elements, expanding data 2
14:09:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:34 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 22:00:00, weight 0.89) and
after (2023-09-02 23:00:00, weight 0.11) in time
14:09:34 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.113712960921475 and -58.95503024319872 degrees.
14:09:34 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.113712960921475 and -58.95503024319872 degrees.
14:09:34 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:34 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:34 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:34 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:34 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:34 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:34 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.807128 (min) 1.10324 (max)
14:09:34 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.937837 (min) 0.954841 (max)
14:09:34 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -9.53217e-05 (min) 0.000678557 (max)
14:09:34 DEBUG opendrift.models.basemodel:1524: x_wind: -8.65715 (min) 5.85182 (max)
14:09:34 DEBUG opendrift.models.basemodel:1524: y_wind: -6.51066 (min) 8.43997 (max)
14:09:34 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:34 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:34 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:34 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:34 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:34 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:34 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:34 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5119 (max)
14:09:34 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:34 DEBUG opendrift.models.basemodel:1527: 6701 active elements
14:09:34 DEBUG opendrift.models.basemodel:1538: 59.09444755927038 <- latitude -> 59.18920573514312
14:09:34 DEBUG opendrift.models.basemodel:1543: 10.886297616188374 <- longitude -> 11.044980315912365
14:09:34 DEBUG opendrift.models.basemodel:1548: -14.805420760892877 <- z -> 0.0
14:09:34 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:34 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:34 DEBUG opendrift.models.physics_methods:1050: min: 0.017632, mean: 2.511593, max: 8.064175
14:09:34 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.017632, mean: 2.511593, max: 8.064175
14:09:34 DEBUG opendrift.models.basemodel:813: 883 elements hit coastline, moving back to water
14:09:34 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:09:34 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:34 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:34 DEBUG opendrift.models.physics_methods:828: Advecting 35 of 6701 elements above 0.100m with wind-sheared ocean current (0.005441 m/s - 0.116789 m/s)
14:09:34 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:34 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:34 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08047190116699218
14:09:34 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:34 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:34 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:34 DEBUG opendrift.models.oceandrift:582: 790 elements penetrated seafloor, lifting up
14:09:34 DEBUG opendrift.models.oceandrift:600: 108 elements reached seafloor, set to bottom
14:09:34 DEBUG opendrift.models.basemodel:836: Lifting 108 elements to seafloor.
14:09:34 DEBUG opendrift.models.sedimentdrift:112: Settling 108 elements at seafloor
14:09:34 DEBUG opendrift.models.oceandrift:582: 586 elements penetrated seafloor, lifting up
14:09:34 DEBUG opendrift.models.oceandrift:600: 122 elements reached seafloor, set to bottom
14:09:34 DEBUG opendrift.models.basemodel:836: Lifting 122 elements to seafloor.
14:09:34 DEBUG opendrift.models.sedimentdrift:112: Settling 122 elements at seafloor
14:09:34 DEBUG opendrift.models.oceandrift:582: 544 elements penetrated seafloor, lifting up
14:09:34 DEBUG opendrift.models.oceandrift:600: 94 elements reached seafloor, set to bottom
14:09:34 DEBUG opendrift.models.basemodel:836: Lifting 94 elements to seafloor.
14:09:34 DEBUG opendrift.models.sedimentdrift:112: Settling 94 elements at seafloor
14:09:34 DEBUG opendrift.models.oceandrift:582: 530 elements penetrated seafloor, lifting up
14:09:34 DEBUG opendrift.models.oceandrift:600: 99 elements reached seafloor, set to bottom
14:09:34 DEBUG opendrift.models.basemodel:836: Lifting 99 elements to seafloor.
14:09:34 DEBUG opendrift.models.sedimentdrift:112: Settling 99 elements at seafloor
14:09:34 DEBUG opendrift.models.oceandrift:582: 494 elements penetrated seafloor, lifting up
14:09:34 DEBUG opendrift.models.oceandrift:600: 85 elements reached seafloor, set to bottom
14:09:34 DEBUG opendrift.models.basemodel:836: Lifting 85 elements to seafloor.
14:09:34 DEBUG opendrift.models.sedimentdrift:112: Settling 85 elements at seafloor
14:09:34 DEBUG opendrift.models.oceandrift:582: 453 elements penetrated seafloor, lifting up
14:09:34 DEBUG opendrift.models.oceandrift:600: 78 elements reached seafloor, set to bottom
14:09:34 DEBUG opendrift.models.basemodel:836: Lifting 78 elements to seafloor.
14:09:34 DEBUG opendrift.models.sedimentdrift:112: Settling 78 elements at seafloor
14:09:34 DEBUG opendrift.models.oceandrift:582: 424 elements penetrated seafloor, lifting up
14:09:34 DEBUG opendrift.models.oceandrift:600: 75 elements reached seafloor, set to bottom
14:09:34 DEBUG opendrift.models.basemodel:836: Lifting 75 elements to seafloor.
14:09:34 DEBUG opendrift.models.sedimentdrift:112: Settling 75 elements at seafloor
14:09:34 DEBUG opendrift.models.oceandrift:582: 396 elements penetrated seafloor, lifting up
14:09:34 DEBUG opendrift.models.oceandrift:600: 79 elements reached seafloor, set to bottom
14:09:34 DEBUG opendrift.models.basemodel:836: Lifting 79 elements to seafloor.
14:09:34 DEBUG opendrift.models.sedimentdrift:112: Settling 79 elements at seafloor
14:09:34 DEBUG opendrift.models.oceandrift:582: 409 elements penetrated seafloor, lifting up
14:09:34 DEBUG opendrift.models.oceandrift:600: 75 elements reached seafloor, set to bottom
14:09:34 DEBUG opendrift.models.basemodel:836: Lifting 75 elements to seafloor.
14:09:34 DEBUG opendrift.models.sedimentdrift:112: Settling 75 elements at seafloor
14:09:34 DEBUG opendrift.models.oceandrift:582: 375 elements penetrated seafloor, lifting up
14:09:34 DEBUG opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
14:09:34 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
14:09:34 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
14:09:34 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:34 DEBUG opendrift.models.basemodel:2945: 6701 active elements (0 deactivated)
14:09:34 DEBUG opendrift.models.basemodel:1658: to be seeded: 3299, already seeded 6701
14:09:34 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:09:34 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:34 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:34 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:34 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:34 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:34 DEBUG opendrift.models.basemodel:1253: Data needed for 6736 elements
14:09:34 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:34 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 22:00:00 (before)
2023-09-02 23:00:00 (after)
14:09:34 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 22:00:00) in space (linearNDFast)
14:09:34 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:34 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:34 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:34 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:34 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:34 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:34 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4538 (max)
14:09:34 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:34 DEBUG opendrift.models.basemodel:1527: 6736 active elements
14:09:34 DEBUG opendrift.models.basemodel:1538: 59.09462234911221 <- latitude -> 59.18967367237846
14:09:34 DEBUG opendrift.models.basemodel:1543: 10.886112252590518 <- longitude -> 11.042232089067719
14:09:34 DEBUG opendrift.models.basemodel:1548: -15.031753106331037 <- z -> 0.0
14:09:34 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:34 DEBUG opendrift.models.basemodel:836: Lifting 586 elements to seafloor.
14:09:34 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:34 INFO opendrift.models.basemodel:2882: 2023-09-02 22:16:21.121579 - step 194 of 216 - 6736 active elements (0 deactivated)
14:09:34 DEBUG opendrift.models.basemodel:2888: 3264 elements scheduled.
14:09:34 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:34 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:34 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:34 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:34 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:34 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:34 DEBUG opendrift.models.basemodel:1253: Data needed for 6736 elements
14:09:34 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:34 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:34 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:34 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:34 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:34 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:34 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:34 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:34 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:34 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:34 DEBUG opendrift.models.basemodel:1253: Data needed for 6736 elements
14:09:34 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:34 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 22:00:00 (before)
2023-09-02 23:00:00 (after)
14:09:35 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:35 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:35 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:35 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:35 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:35 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:35 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x25x6) for time after (2023-09-02 23:00:00)
14:09:35 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 22:00:00) in space (linearNDFast)
14:09:35 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:35 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 23:00:00) in space (linearNDFast)
14:09:35 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4201 elements, expanding data 1
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 109 elements, expanding data 2
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4201 elements, expanding data 1
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 109 elements, expanding data 2
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4331 elements, expanding data 1
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 417 elements, expanding data 2
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 3
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4331 elements, expanding data 1
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 417 elements, expanding data 2
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 3
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4331 elements, expanding data 1
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 417 elements, expanding data 2
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 3
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4331 elements, expanding data 1
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 417 elements, expanding data 2
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 3
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4331 elements, expanding data 1
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 417 elements, expanding data 2
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 3
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4331 elements, expanding data 1
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 417 elements, expanding data 2
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 3
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5703 elements, expanding data 1
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2399 elements, expanding data 2
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5703 elements, expanding data 1
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2399 elements, expanding data 2
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5703 elements, expanding data 1
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2399 elements, expanding data 2
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5703 elements, expanding data 1
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2399 elements, expanding data 2
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5703 elements, expanding data 1
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2399 elements, expanding data 2
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5703 elements, expanding data 1
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2399 elements, expanding data 2
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4201 elements, expanding data 1
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 109 elements, expanding data 2
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4201 elements, expanding data 1
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 109 elements, expanding data 2
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4201 elements, expanding data 1
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 109 elements, expanding data 2
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4201 elements, expanding data 1
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 109 elements, expanding data 2
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4201 elements, expanding data 1
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 109 elements, expanding data 2
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4201 elements, expanding data 1
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 109 elements, expanding data 2
14:09:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:35 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 22:00:00, weight 0.73) and
after (2023-09-02 23:00:00, weight 0.27) in time
14:09:35 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.11389832523405 and -58.95777845701393 degrees.
14:09:35 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.11389832523405 and -58.95777845701393 degrees.
14:09:35 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:35 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:35 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:35 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:35 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:35 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:35 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.751254 (min) 1.15971 (max)
14:09:35 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.969055 (min) 0.789136 (max)
14:09:35 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000105476 (min) 0.00066904 (max)
14:09:35 DEBUG opendrift.models.basemodel:1524: x_wind: -9.84875 (min) 4.60938 (max)
14:09:35 DEBUG opendrift.models.basemodel:1524: y_wind: -6.70062 (min) 8.17015 (max)
14:09:35 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:35 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:35 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:35 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:35 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:35 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:35 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:35 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4538 (max)
14:09:35 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:35 DEBUG opendrift.models.basemodel:1527: 6736 active elements
14:09:35 DEBUG opendrift.models.basemodel:1538: 59.09462234911221 <- latitude -> 59.18967367237846
14:09:35 DEBUG opendrift.models.basemodel:1543: 10.886112252590518 <- longitude -> 11.042232089067719
14:09:35 DEBUG opendrift.models.basemodel:1548: -15.031753106331037 <- z -> 0.0
14:09:35 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:35 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:35 DEBUG opendrift.models.physics_methods:1050: min: 0.025119, mean: 2.491686, max: 8.447825
14:09:35 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.025119, mean: 2.491686, max: 8.447825
14:09:35 DEBUG opendrift.models.basemodel:813: 943 elements hit coastline, moving back to water
14:09:35 DEBUG opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
14:09:35 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:35 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:35 DEBUG opendrift.models.physics_methods:828: Advecting 35 of 6736 elements above 0.100m with wind-sheared ocean current (0.006638 m/s - 0.116940 m/s)
14:09:35 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:35 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:35 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08831048053653716
14:09:35 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:35 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:35 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:35 DEBUG opendrift.models.oceandrift:582: 767 elements penetrated seafloor, lifting up
14:09:35 DEBUG opendrift.models.oceandrift:600: 110 elements reached seafloor, set to bottom
14:09:35 DEBUG opendrift.models.basemodel:836: Lifting 110 elements to seafloor.
14:09:35 DEBUG opendrift.models.sedimentdrift:112: Settling 110 elements at seafloor
14:09:35 DEBUG opendrift.models.oceandrift:582: 566 elements penetrated seafloor, lifting up
14:09:35 DEBUG opendrift.models.oceandrift:600: 109 elements reached seafloor, set to bottom
14:09:35 DEBUG opendrift.models.basemodel:836: Lifting 109 elements to seafloor.
14:09:35 DEBUG opendrift.models.sedimentdrift:112: Settling 109 elements at seafloor
14:09:35 DEBUG opendrift.models.oceandrift:582: 500 elements penetrated seafloor, lifting up
14:09:35 DEBUG opendrift.models.oceandrift:600: 93 elements reached seafloor, set to bottom
14:09:35 DEBUG opendrift.models.basemodel:836: Lifting 93 elements to seafloor.
14:09:35 DEBUG opendrift.models.sedimentdrift:112: Settling 93 elements at seafloor
14:09:35 DEBUG opendrift.models.oceandrift:582: 486 elements penetrated seafloor, lifting up
14:09:35 DEBUG opendrift.models.oceandrift:600: 86 elements reached seafloor, set to bottom
14:09:35 DEBUG opendrift.models.basemodel:836: Lifting 86 elements to seafloor.
14:09:35 DEBUG opendrift.models.sedimentdrift:112: Settling 86 elements at seafloor
14:09:35 DEBUG opendrift.models.oceandrift:582: 467 elements penetrated seafloor, lifting up
14:09:35 DEBUG opendrift.models.oceandrift:600: 73 elements reached seafloor, set to bottom
14:09:35 DEBUG opendrift.models.basemodel:836: Lifting 73 elements to seafloor.
14:09:35 DEBUG opendrift.models.sedimentdrift:112: Settling 73 elements at seafloor
14:09:35 DEBUG opendrift.models.oceandrift:582: 446 elements penetrated seafloor, lifting up
14:09:35 DEBUG opendrift.models.oceandrift:600: 79 elements reached seafloor, set to bottom
14:09:35 DEBUG opendrift.models.basemodel:836: Lifting 79 elements to seafloor.
14:09:35 DEBUG opendrift.models.sedimentdrift:112: Settling 79 elements at seafloor
14:09:35 DEBUG opendrift.models.oceandrift:582: 424 elements penetrated seafloor, lifting up
14:09:35 DEBUG opendrift.models.oceandrift:600: 78 elements reached seafloor, set to bottom
14:09:35 DEBUG opendrift.models.basemodel:836: Lifting 78 elements to seafloor.
14:09:35 DEBUG opendrift.models.sedimentdrift:112: Settling 78 elements at seafloor
14:09:35 DEBUG opendrift.models.oceandrift:582: 430 elements penetrated seafloor, lifting up
14:09:35 DEBUG opendrift.models.oceandrift:600: 80 elements reached seafloor, set to bottom
14:09:35 DEBUG opendrift.models.basemodel:836: Lifting 80 elements to seafloor.
14:09:35 DEBUG opendrift.models.sedimentdrift:112: Settling 80 elements at seafloor
14:09:35 DEBUG opendrift.models.oceandrift:582: 399 elements penetrated seafloor, lifting up
14:09:35 DEBUG opendrift.models.oceandrift:600: 67 elements reached seafloor, set to bottom
14:09:35 DEBUG opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
14:09:35 DEBUG opendrift.models.sedimentdrift:112: Settling 67 elements at seafloor
14:09:35 DEBUG opendrift.models.oceandrift:582: 403 elements penetrated seafloor, lifting up
14:09:35 DEBUG opendrift.models.oceandrift:600: 71 elements reached seafloor, set to bottom
14:09:35 DEBUG opendrift.models.basemodel:836: Lifting 71 elements to seafloor.
14:09:35 DEBUG opendrift.models.sedimentdrift:112: Settling 71 elements at seafloor
14:09:35 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:35 DEBUG opendrift.models.basemodel:2945: 6736 active elements (0 deactivated)
14:09:35 DEBUG opendrift.models.basemodel:1658: to be seeded: 3264, already seeded 6736
14:09:35 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:09:35 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:35 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:35 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:35 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:35 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:35 DEBUG opendrift.models.basemodel:1253: Data needed for 6771 elements
14:09:35 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:35 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 22:00:00 (before)
2023-09-02 23:00:00 (after)
14:09:35 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 22:00:00) in space (linearNDFast)
14:09:35 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:35 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:35 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:35 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:35 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:35 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:35 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4531 (max)
14:09:35 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:35 DEBUG opendrift.models.basemodel:1527: 6771 active elements
14:09:35 DEBUG opendrift.models.basemodel:1538: 59.09642914253144 <- latitude -> 59.190650445813546
14:09:35 DEBUG opendrift.models.basemodel:1543: 10.886206590731446 <- longitude -> 11.043800930503464
14:09:35 DEBUG opendrift.models.basemodel:1548: -15.286287536621094 <- z -> 0.0
14:09:35 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:35 DEBUG opendrift.models.basemodel:836: Lifting 592 elements to seafloor.
14:09:35 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:35 INFO opendrift.models.basemodel:2882: 2023-09-02 22:26:21.121579 - step 195 of 216 - 6771 active elements (0 deactivated)
14:09:35 DEBUG opendrift.models.basemodel:2888: 3229 elements scheduled.
14:09:35 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:35 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:35 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:35 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:35 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:35 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:35 DEBUG opendrift.models.basemodel:1253: Data needed for 6771 elements
14:09:35 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:35 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:35 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:35 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:35 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:35 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:35 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:35 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:35 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:35 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:35 DEBUG opendrift.models.basemodel:1253: Data needed for 6771 elements
14:09:35 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:35 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 22:00:00 (before)
2023-09-02 23:00:00 (after)
14:09:36 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:36 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:36 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:36 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:36 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:36 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:36 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x26x6) for time after (2023-09-02 23:00:00)
14:09:36 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 22:00:00) in space (linearNDFast)
14:09:36 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:36 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 23:00:00) in space (linearNDFast)
14:09:36 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4230 elements, expanding data 1
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 104 elements, expanding data 2
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4230 elements, expanding data 1
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 104 elements, expanding data 2
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4355 elements, expanding data 1
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 410 elements, expanding data 2
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 3
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4355 elements, expanding data 1
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 410 elements, expanding data 2
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 3
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4355 elements, expanding data 1
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 410 elements, expanding data 2
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 3
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4355 elements, expanding data 1
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 410 elements, expanding data 2
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 3
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4355 elements, expanding data 1
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 410 elements, expanding data 2
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 3
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4355 elements, expanding data 1
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 410 elements, expanding data 2
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 3
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5730 elements, expanding data 1
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2414 elements, expanding data 2
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5730 elements, expanding data 1
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2414 elements, expanding data 2
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5730 elements, expanding data 1
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2414 elements, expanding data 2
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5730 elements, expanding data 1
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2414 elements, expanding data 2
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5730 elements, expanding data 1
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2414 elements, expanding data 2
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5730 elements, expanding data 1
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2414 elements, expanding data 2
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4230 elements, expanding data 1
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 104 elements, expanding data 2
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4230 elements, expanding data 1
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 104 elements, expanding data 2
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4230 elements, expanding data 1
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 104 elements, expanding data 2
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4230 elements, expanding data 1
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 104 elements, expanding data 2
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4230 elements, expanding data 1
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 104 elements, expanding data 2
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4230 elements, expanding data 1
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 104 elements, expanding data 2
14:09:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:09:36 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 22:00:00, weight 0.56) and
after (2023-09-02 23:00:00, weight 0.44) in time
14:09:36 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.11380398440592 and -58.956209626119914 degrees.
14:09:36 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.11380398440592 and -58.956209626119914 degrees.
14:09:36 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:36 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:36 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:36 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:36 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:36 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:36 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.794855 (min) 1.2937 (max)
14:09:36 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.1028 (min) 0.783471 (max)
14:09:36 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -9.04293e-05 (min) 0.00058681 (max)
14:09:36 DEBUG opendrift.models.basemodel:1524: x_wind: -8.61337 (min) 6.96417 (max)
14:09:36 DEBUG opendrift.models.basemodel:1524: y_wind: -6.45376 (min) 7.28846 (max)
14:09:36 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:36 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:36 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:36 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:36 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:36 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:36 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:36 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4531 (max)
14:09:36 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:36 DEBUG opendrift.models.basemodel:1527: 6771 active elements
14:09:36 DEBUG opendrift.models.basemodel:1538: 59.09642914253144 <- latitude -> 59.190650445813546
14:09:36 DEBUG opendrift.models.basemodel:1543: 10.886206590731446 <- longitude -> 11.043800930503464
14:09:36 DEBUG opendrift.models.basemodel:1548: -15.286287536621094 <- z -> 0.0
14:09:36 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:36 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:36 DEBUG opendrift.models.physics_methods:1050: min: 0.005246, mean: 2.473186, max: 7.454984
14:09:36 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.005246, mean: 2.473186, max: 7.454984
14:09:36 DEBUG opendrift.models.basemodel:813: 933 elements hit coastline, moving back to water
14:09:36 DEBUG opendrift.models.basemodel:836: Lifting 227 elements to seafloor.
14:09:36 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:36 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:36 DEBUG opendrift.models.physics_methods:828: Advecting 37 of 6771 elements above 0.100m with wind-sheared ocean current (0.002599 m/s - 0.135764 m/s)
14:09:36 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:36 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:36 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.06877357485683441
14:09:36 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:36 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:36 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:36 DEBUG opendrift.models.oceandrift:582: 743 elements penetrated seafloor, lifting up
14:09:36 DEBUG opendrift.models.oceandrift:600: 101 elements reached seafloor, set to bottom
14:09:36 DEBUG opendrift.models.basemodel:836: Lifting 101 elements to seafloor.
14:09:36 DEBUG opendrift.models.sedimentdrift:112: Settling 101 elements at seafloor
14:09:36 DEBUG opendrift.models.oceandrift:582: 604 elements penetrated seafloor, lifting up
14:09:36 DEBUG opendrift.models.oceandrift:600: 92 elements reached seafloor, set to bottom
14:09:36 DEBUG opendrift.models.basemodel:836: Lifting 92 elements to seafloor.
14:09:36 DEBUG opendrift.models.sedimentdrift:112: Settling 92 elements at seafloor
14:09:36 DEBUG opendrift.models.oceandrift:582: 516 elements penetrated seafloor, lifting up
14:09:36 DEBUG opendrift.models.oceandrift:600: 87 elements reached seafloor, set to bottom
14:09:36 DEBUG opendrift.models.basemodel:836: Lifting 87 elements to seafloor.
14:09:36 DEBUG opendrift.models.sedimentdrift:112: Settling 87 elements at seafloor
14:09:36 DEBUG opendrift.models.oceandrift:582: 477 elements penetrated seafloor, lifting up
14:09:36 DEBUG opendrift.models.oceandrift:600: 82 elements reached seafloor, set to bottom
14:09:36 DEBUG opendrift.models.basemodel:836: Lifting 82 elements to seafloor.
14:09:36 DEBUG opendrift.models.sedimentdrift:112: Settling 82 elements at seafloor
14:09:36 DEBUG opendrift.models.oceandrift:582: 445 elements penetrated seafloor, lifting up
14:09:36 DEBUG opendrift.models.oceandrift:600: 92 elements reached seafloor, set to bottom
14:09:36 DEBUG opendrift.models.basemodel:836: Lifting 92 elements to seafloor.
14:09:36 DEBUG opendrift.models.sedimentdrift:112: Settling 92 elements at seafloor
14:09:36 DEBUG opendrift.models.oceandrift:582: 449 elements penetrated seafloor, lifting up
14:09:36 DEBUG opendrift.models.oceandrift:600: 79 elements reached seafloor, set to bottom
14:09:36 DEBUG opendrift.models.basemodel:836: Lifting 79 elements to seafloor.
14:09:36 DEBUG opendrift.models.sedimentdrift:112: Settling 79 elements at seafloor
14:09:36 DEBUG opendrift.models.oceandrift:582: 425 elements penetrated seafloor, lifting up
14:09:36 DEBUG opendrift.models.oceandrift:600: 85 elements reached seafloor, set to bottom
14:09:36 DEBUG opendrift.models.basemodel:836: Lifting 85 elements to seafloor.
14:09:36 DEBUG opendrift.models.sedimentdrift:112: Settling 85 elements at seafloor
14:09:36 DEBUG opendrift.models.oceandrift:582: 376 elements penetrated seafloor, lifting up
14:09:36 DEBUG opendrift.models.oceandrift:600: 78 elements reached seafloor, set to bottom
14:09:36 DEBUG opendrift.models.basemodel:836: Lifting 78 elements to seafloor.
14:09:36 DEBUG opendrift.models.sedimentdrift:112: Settling 78 elements at seafloor
14:09:36 DEBUG opendrift.models.oceandrift:582: 402 elements penetrated seafloor, lifting up
14:09:36 DEBUG opendrift.models.oceandrift:600: 71 elements reached seafloor, set to bottom
14:09:36 DEBUG opendrift.models.basemodel:836: Lifting 71 elements to seafloor.
14:09:36 DEBUG opendrift.models.sedimentdrift:112: Settling 71 elements at seafloor
14:09:36 DEBUG opendrift.models.oceandrift:582: 366 elements penetrated seafloor, lifting up
14:09:36 DEBUG opendrift.models.oceandrift:600: 69 elements reached seafloor, set to bottom
14:09:36 DEBUG opendrift.models.basemodel:836: Lifting 69 elements to seafloor.
14:09:36 DEBUG opendrift.models.sedimentdrift:112: Settling 69 elements at seafloor
14:09:36 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:36 DEBUG opendrift.models.basemodel:2945: 6771 active elements (0 deactivated)
14:09:36 DEBUG opendrift.models.basemodel:1658: to be seeded: 3229, already seeded 6771
14:09:36 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:09:36 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:36 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:36 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:36 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:36 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:36 DEBUG opendrift.models.basemodel:1253: Data needed for 6805 elements
14:09:36 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:36 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 22:00:00 (before)
2023-09-02 23:00:00 (after)
14:09:36 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 22:00:00) in space (linearNDFast)
14:09:36 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:36 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:36 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:36 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:36 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:36 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:36 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4671 (max)
14:09:36 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:36 DEBUG opendrift.models.basemodel:1527: 6805 active elements
14:09:36 DEBUG opendrift.models.basemodel:1538: 59.09562112847519 <- latitude -> 59.189757897056765
14:09:36 DEBUG opendrift.models.basemodel:1543: 10.886513577249533 <- longitude -> 11.042947555494402
14:09:36 DEBUG opendrift.models.basemodel:1548: -15.35791301727295 <- z -> 0.0
14:09:36 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:36 DEBUG opendrift.models.basemodel:836: Lifting 594 elements to seafloor.
14:09:36 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:36 INFO opendrift.models.basemodel:2882: 2023-09-02 22:36:21.121579 - step 196 of 216 - 6805 active elements (0 deactivated)
14:09:36 DEBUG opendrift.models.basemodel:2888: 3195 elements scheduled.
14:09:36 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:36 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:36 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:36 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:36 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:36 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:36 DEBUG opendrift.models.basemodel:1253: Data needed for 6805 elements
14:09:36 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:36 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:36 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:36 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:36 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:36 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:36 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:36 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:36 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:36 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:36 DEBUG opendrift.models.basemodel:1253: Data needed for 6805 elements
14:09:36 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:36 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 22:00:00 (before)
2023-09-02 23:00:00 (after)
14:09:37 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:37 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:37 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:37 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:37 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:37 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:37 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x26x6) for time after (2023-09-02 23:00:00)
14:09:37 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 22:00:00) in space (linearNDFast)
14:09:37 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:37 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 23:00:00) in space (linearNDFast)
14:09:37 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4218 elements, expanding data 1
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 108 elements, expanding data 2
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4218 elements, expanding data 1
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 108 elements, expanding data 2
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4340 elements, expanding data 1
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 410 elements, expanding data 2
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 100 elements, expanding data 3
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4340 elements, expanding data 1
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 410 elements, expanding data 2
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 100 elements, expanding data 3
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4340 elements, expanding data 1
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 410 elements, expanding data 2
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 100 elements, expanding data 3
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4340 elements, expanding data 1
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 410 elements, expanding data 2
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 100 elements, expanding data 3
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4340 elements, expanding data 1
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 410 elements, expanding data 2
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 100 elements, expanding data 3
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4340 elements, expanding data 1
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 410 elements, expanding data 2
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 100 elements, expanding data 3
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5774 elements, expanding data 1
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2428 elements, expanding data 2
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5774 elements, expanding data 1
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2428 elements, expanding data 2
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5774 elements, expanding data 1
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2428 elements, expanding data 2
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5774 elements, expanding data 1
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2428 elements, expanding data 2
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5774 elements, expanding data 1
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2428 elements, expanding data 2
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5774 elements, expanding data 1
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2428 elements, expanding data 2
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4218 elements, expanding data 1
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 108 elements, expanding data 2
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4218 elements, expanding data 1
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 108 elements, expanding data 2
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4218 elements, expanding data 1
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 108 elements, expanding data 2
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4218 elements, expanding data 1
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 108 elements, expanding data 2
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4218 elements, expanding data 1
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 108 elements, expanding data 2
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4218 elements, expanding data 1
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 108 elements, expanding data 2
14:09:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:37 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 22:00:00, weight 0.39) and
after (2023-09-02 23:00:00, weight 0.61) in time
14:09:37 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.113497009523535 and -58.95706299421093 degrees.
14:09:37 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.113497009523535 and -58.95706299421093 degrees.
14:09:37 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:37 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:37 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:37 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:37 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:37 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:37 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.806969 (min) 1.29525 (max)
14:09:37 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.928815 (min) 0.758543 (max)
14:09:37 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -8.90113e-05 (min) 0.000659716 (max)
14:09:37 DEBUG opendrift.models.basemodel:1524: x_wind: -9.39223 (min) 5.61633 (max)
14:09:37 DEBUG opendrift.models.basemodel:1524: y_wind: -7.53844 (min) 6.90724 (max)
14:09:37 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:37 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:37 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:37 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:37 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:37 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:37 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:37 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4671 (max)
14:09:37 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:37 DEBUG opendrift.models.basemodel:1527: 6805 active elements
14:09:37 DEBUG opendrift.models.basemodel:1538: 59.09562112847519 <- latitude -> 59.189757897056765
14:09:37 DEBUG opendrift.models.basemodel:1543: 10.886513577249533 <- longitude -> 11.042947555494402
14:09:37 DEBUG opendrift.models.basemodel:1548: -15.328168869018555 <- z -> 0.0
14:09:37 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:37 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:37 DEBUG opendrift.models.physics_methods:1050: min: 0.057990, mean: 2.490451, max: 8.285235
14:09:37 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.057990, mean: 2.490451, max: 8.285235
14:09:37 DEBUG opendrift.models.basemodel:813: 933 elements hit coastline, moving back to water
14:09:37 DEBUG opendrift.models.basemodel:836: Lifting 236 elements to seafloor.
14:09:37 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:37 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:37 DEBUG opendrift.models.physics_methods:828: Advecting 35 of 6805 elements above 0.100m with wind-sheared ocean current (0.002261 m/s - 0.139755 m/s)
14:09:37 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:37 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:37 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08494402470691681
14:09:37 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:37 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:37 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:37 DEBUG opendrift.models.oceandrift:582: 752 elements penetrated seafloor, lifting up
14:09:37 DEBUG opendrift.models.oceandrift:600: 110 elements reached seafloor, set to bottom
14:09:37 DEBUG opendrift.models.basemodel:836: Lifting 110 elements to seafloor.
14:09:37 DEBUG opendrift.models.sedimentdrift:112: Settling 110 elements at seafloor
14:09:37 DEBUG opendrift.models.oceandrift:582: 559 elements penetrated seafloor, lifting up
14:09:37 DEBUG opendrift.models.oceandrift:600: 97 elements reached seafloor, set to bottom
14:09:37 DEBUG opendrift.models.basemodel:836: Lifting 97 elements to seafloor.
14:09:37 DEBUG opendrift.models.sedimentdrift:112: Settling 97 elements at seafloor
14:09:37 DEBUG opendrift.models.oceandrift:582: 494 elements penetrated seafloor, lifting up
14:09:37 DEBUG opendrift.models.oceandrift:600: 86 elements reached seafloor, set to bottom
14:09:37 DEBUG opendrift.models.basemodel:836: Lifting 86 elements to seafloor.
14:09:37 DEBUG opendrift.models.sedimentdrift:112: Settling 86 elements at seafloor
14:09:37 DEBUG opendrift.models.oceandrift:582: 477 elements penetrated seafloor, lifting up
14:09:37 DEBUG opendrift.models.oceandrift:600: 76 elements reached seafloor, set to bottom
14:09:37 DEBUG opendrift.models.basemodel:836: Lifting 76 elements to seafloor.
14:09:37 DEBUG opendrift.models.sedimentdrift:112: Settling 76 elements at seafloor
14:09:37 DEBUG opendrift.models.oceandrift:582: 461 elements penetrated seafloor, lifting up
14:09:37 DEBUG opendrift.models.oceandrift:600: 76 elements reached seafloor, set to bottom
14:09:37 DEBUG opendrift.models.basemodel:836: Lifting 76 elements to seafloor.
14:09:37 DEBUG opendrift.models.sedimentdrift:112: Settling 76 elements at seafloor
14:09:37 DEBUG opendrift.models.oceandrift:582: 445 elements penetrated seafloor, lifting up
14:09:37 DEBUG opendrift.models.oceandrift:600: 81 elements reached seafloor, set to bottom
14:09:37 DEBUG opendrift.models.basemodel:836: Lifting 81 elements to seafloor.
14:09:37 DEBUG opendrift.models.sedimentdrift:112: Settling 81 elements at seafloor
14:09:37 DEBUG opendrift.models.oceandrift:582: 422 elements penetrated seafloor, lifting up
14:09:37 DEBUG opendrift.models.oceandrift:600: 79 elements reached seafloor, set to bottom
14:09:37 DEBUG opendrift.models.basemodel:836: Lifting 79 elements to seafloor.
14:09:37 DEBUG opendrift.models.sedimentdrift:112: Settling 79 elements at seafloor
14:09:37 DEBUG opendrift.models.oceandrift:582: 426 elements penetrated seafloor, lifting up
14:09:37 DEBUG opendrift.models.oceandrift:600: 67 elements reached seafloor, set to bottom
14:09:37 DEBUG opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
14:09:37 DEBUG opendrift.models.sedimentdrift:112: Settling 67 elements at seafloor
14:09:37 DEBUG opendrift.models.oceandrift:582: 415 elements penetrated seafloor, lifting up
14:09:37 DEBUG opendrift.models.oceandrift:600: 81 elements reached seafloor, set to bottom
14:09:37 DEBUG opendrift.models.basemodel:836: Lifting 81 elements to seafloor.
14:09:37 DEBUG opendrift.models.sedimentdrift:112: Settling 81 elements at seafloor
14:09:37 DEBUG opendrift.models.oceandrift:582: 371 elements penetrated seafloor, lifting up
14:09:37 DEBUG opendrift.models.oceandrift:600: 87 elements reached seafloor, set to bottom
14:09:37 DEBUG opendrift.models.basemodel:836: Lifting 87 elements to seafloor.
14:09:37 DEBUG opendrift.models.sedimentdrift:112: Settling 87 elements at seafloor
14:09:37 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:37 DEBUG opendrift.models.basemodel:2945: 6805 active elements (0 deactivated)
14:09:37 DEBUG opendrift.models.basemodel:1658: to be seeded: 3195, already seeded 6805
14:09:37 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:09:37 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:37 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:37 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:37 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:37 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:37 DEBUG opendrift.models.basemodel:1253: Data needed for 6840 elements
14:09:37 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:37 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 22:00:00 (before)
2023-09-02 23:00:00 (after)
14:09:37 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 22:00:00) in space (linearNDFast)
14:09:37 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:37 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:37 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:37 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:37 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:37 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:37 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4425 (max)
14:09:37 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:37 DEBUG opendrift.models.basemodel:1527: 6840 active elements
14:09:37 DEBUG opendrift.models.basemodel:1538: 59.095530574674044 <- latitude -> 59.18913464209109
14:09:37 DEBUG opendrift.models.basemodel:1543: 10.88556469706183 <- longitude -> 11.04732554423868
14:09:37 DEBUG opendrift.models.basemodel:1548: -15.318168869018555 <- z -> 0.0
14:09:37 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:37 DEBUG opendrift.models.basemodel:836: Lifting 582 elements to seafloor.
14:09:37 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:37 INFO opendrift.models.basemodel:2882: 2023-09-02 22:46:21.121579 - step 197 of 216 - 6840 active elements (0 deactivated)
14:09:37 DEBUG opendrift.models.basemodel:2888: 3160 elements scheduled.
14:09:37 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:37 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:37 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:37 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:37 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:37 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:37 DEBUG opendrift.models.basemodel:1253: Data needed for 6840 elements
14:09:37 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:37 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:37 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:37 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:37 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:37 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:37 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:37 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:37 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:37 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:37 DEBUG opendrift.models.basemodel:1253: Data needed for 6840 elements
14:09:37 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:37 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 22:00:00 (before)
2023-09-02 23:00:00 (after)
14:09:39 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:39 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:39 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:39 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:39 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:39 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:39 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x26x6) for time after (2023-09-02 23:00:00)
14:09:39 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 22:00:00) in space (linearNDFast)
14:09:39 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:39 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 23:00:00) in space (linearNDFast)
14:09:39 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4251 elements, expanding data 1
14:09:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 109 elements, expanding data 2
14:09:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4251 elements, expanding data 1
14:09:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 109 elements, expanding data 2
14:09:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4372 elements, expanding data 1
14:09:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 409 elements, expanding data 2
14:09:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 102 elements, expanding data 3
14:09:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4372 elements, expanding data 1
14:09:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 409 elements, expanding data 2
14:09:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 102 elements, expanding data 3
14:09:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4372 elements, expanding data 1
14:09:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 409 elements, expanding data 2
14:09:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 102 elements, expanding data 3
14:09:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4372 elements, expanding data 1
14:09:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 409 elements, expanding data 2
14:09:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 102 elements, expanding data 3
14:09:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4372 elements, expanding data 1
14:09:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 409 elements, expanding data 2
14:09:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 102 elements, expanding data 3
14:09:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4372 elements, expanding data 1
14:09:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 409 elements, expanding data 2
14:09:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 102 elements, expanding data 3
14:09:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5807 elements, expanding data 1
14:09:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2417 elements, expanding data 2
14:09:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5807 elements, expanding data 1
14:09:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2417 elements, expanding data 2
14:09:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5807 elements, expanding data 1
14:09:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2417 elements, expanding data 2
14:09:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5807 elements, expanding data 1
14:09:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2417 elements, expanding data 2
14:09:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5807 elements, expanding data 1
14:09:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2417 elements, expanding data 2
14:09:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5807 elements, expanding data 1
14:09:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2417 elements, expanding data 2
14:09:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4251 elements, expanding data 1
14:09:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 109 elements, expanding data 2
14:09:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4251 elements, expanding data 1
14:09:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 109 elements, expanding data 2
14:09:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4251 elements, expanding data 1
14:09:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 109 elements, expanding data 2
14:09:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4251 elements, expanding data 1
14:09:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 109 elements, expanding data 2
14:09:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4251 elements, expanding data 1
14:09:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 109 elements, expanding data 2
14:09:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4251 elements, expanding data 1
14:09:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 109 elements, expanding data 2
14:09:39 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 22:00:00, weight 0.23) and
after (2023-09-02 23:00:00, weight 0.77) in time
14:09:39 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.114445874665 and -58.95268501490808 degrees.
14:09:39 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.114445874665 and -58.95268501490808 degrees.
14:09:39 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:39 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:39 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:39 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:39 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:39 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:39 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.831772 (min) 1.34799 (max)
14:09:39 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.09688 (min) 0.798951 (max)
14:09:39 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000107121 (min) 0.00060765 (max)
14:09:39 DEBUG opendrift.models.basemodel:1524: x_wind: -8.9108 (min) 5.32336 (max)
14:09:39 DEBUG opendrift.models.basemodel:1524: y_wind: -7.10928 (min) 6.97827 (max)
14:09:39 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:39 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:39 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:39 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:39 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:39 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:39 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:39 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4425 (max)
14:09:39 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:39 DEBUG opendrift.models.basemodel:1527: 6840 active elements
14:09:39 DEBUG opendrift.models.basemodel:1538: 59.095530574674044 <- latitude -> 59.18913464209109
14:09:39 DEBUG opendrift.models.basemodel:1543: 10.88556469706183 <- longitude -> 11.04732554423868
14:09:39 DEBUG opendrift.models.basemodel:1548: -15.318168869018555 <- z -> 0.0
14:09:39 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:39 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:39 DEBUG opendrift.models.physics_methods:1050: min: 0.039383, mean: 2.464518, max: 7.772593
14:09:39 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.039383, mean: 2.464518, max: 7.772593
14:09:39 DEBUG opendrift.models.basemodel:813: 949 elements hit coastline, moving back to water
14:09:39 DEBUG opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
14:09:39 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:39 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:39 DEBUG opendrift.models.physics_methods:828: Advecting 36 of 6840 elements above 0.100m with wind-sheared ocean current (0.007541 m/s - 0.171841 m/s)
14:09:39 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:39 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:39 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07475805761535644
14:09:39 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:39 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:39 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:39 DEBUG opendrift.models.oceandrift:582: 717 elements penetrated seafloor, lifting up
14:09:39 DEBUG opendrift.models.oceandrift:600: 106 elements reached seafloor, set to bottom
14:09:39 DEBUG opendrift.models.basemodel:836: Lifting 106 elements to seafloor.
14:09:39 DEBUG opendrift.models.sedimentdrift:112: Settling 106 elements at seafloor
14:09:39 DEBUG opendrift.models.oceandrift:582: 572 elements penetrated seafloor, lifting up
14:09:39 DEBUG opendrift.models.oceandrift:600: 95 elements reached seafloor, set to bottom
14:09:39 DEBUG opendrift.models.basemodel:836: Lifting 95 elements to seafloor.
14:09:39 DEBUG opendrift.models.sedimentdrift:112: Settling 95 elements at seafloor
14:09:39 DEBUG opendrift.models.oceandrift:582: 535 elements penetrated seafloor, lifting up
14:09:39 DEBUG opendrift.models.oceandrift:600: 97 elements reached seafloor, set to bottom
14:09:39 DEBUG opendrift.models.basemodel:836: Lifting 97 elements to seafloor.
14:09:39 DEBUG opendrift.models.sedimentdrift:112: Settling 97 elements at seafloor
14:09:39 DEBUG opendrift.models.oceandrift:582: 498 elements penetrated seafloor, lifting up
14:09:39 DEBUG opendrift.models.oceandrift:600: 82 elements reached seafloor, set to bottom
14:09:39 DEBUG opendrift.models.basemodel:836: Lifting 82 elements to seafloor.
14:09:39 DEBUG opendrift.models.sedimentdrift:112: Settling 82 elements at seafloor
14:09:39 DEBUG opendrift.models.oceandrift:582: 464 elements penetrated seafloor, lifting up
14:09:39 DEBUG opendrift.models.oceandrift:600: 75 elements reached seafloor, set to bottom
14:09:39 DEBUG opendrift.models.basemodel:836: Lifting 75 elements to seafloor.
14:09:39 DEBUG opendrift.models.sedimentdrift:112: Settling 75 elements at seafloor
14:09:39 DEBUG opendrift.models.oceandrift:582: 449 elements penetrated seafloor, lifting up
14:09:39 DEBUG opendrift.models.oceandrift:600: 74 elements reached seafloor, set to bottom
14:09:39 DEBUG opendrift.models.basemodel:836: Lifting 74 elements to seafloor.
14:09:39 DEBUG opendrift.models.sedimentdrift:112: Settling 74 elements at seafloor
14:09:39 DEBUG opendrift.models.oceandrift:582: 432 elements penetrated seafloor, lifting up
14:09:39 DEBUG opendrift.models.oceandrift:600: 67 elements reached seafloor, set to bottom
14:09:39 DEBUG opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
14:09:39 DEBUG opendrift.models.sedimentdrift:112: Settling 67 elements at seafloor
14:09:39 DEBUG opendrift.models.oceandrift:582: 426 elements penetrated seafloor, lifting up
14:09:39 DEBUG opendrift.models.oceandrift:600: 72 elements reached seafloor, set to bottom
14:09:39 DEBUG opendrift.models.basemodel:836: Lifting 72 elements to seafloor.
14:09:39 DEBUG opendrift.models.sedimentdrift:112: Settling 72 elements at seafloor
14:09:39 DEBUG opendrift.models.oceandrift:582: 431 elements penetrated seafloor, lifting up
14:09:39 DEBUG opendrift.models.oceandrift:600: 86 elements reached seafloor, set to bottom
14:09:39 DEBUG opendrift.models.basemodel:836: Lifting 86 elements to seafloor.
14:09:39 DEBUG opendrift.models.sedimentdrift:112: Settling 86 elements at seafloor
14:09:39 DEBUG opendrift.models.oceandrift:582: 418 elements penetrated seafloor, lifting up
14:09:39 DEBUG opendrift.models.oceandrift:600: 69 elements reached seafloor, set to bottom
14:09:39 DEBUG opendrift.models.basemodel:836: Lifting 69 elements to seafloor.
14:09:39 DEBUG opendrift.models.sedimentdrift:112: Settling 69 elements at seafloor
14:09:39 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:39 DEBUG opendrift.models.basemodel:2945: 6840 active elements (0 deactivated)
14:09:39 DEBUG opendrift.models.basemodel:1658: to be seeded: 3160, already seeded 6840
14:09:39 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:09:39 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:39 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:39 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:39 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:39 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:39 DEBUG opendrift.models.basemodel:1253: Data needed for 6875 elements
14:09:39 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:39 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 22:00:00 (before)
2023-09-02 23:00:00 (after)
14:09:39 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 22:00:00) in space (linearNDFast)
14:09:39 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:39 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:39 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:39 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:39 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:39 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:39 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4825 (max)
14:09:39 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:39 DEBUG opendrift.models.basemodel:1527: 6875 active elements
14:09:39 DEBUG opendrift.models.basemodel:1538: 59.09456930595882 <- latitude -> 59.190403122746545
14:09:39 DEBUG opendrift.models.basemodel:1543: 10.88206479792635 <- longitude -> 11.046166094395936
14:09:39 DEBUG opendrift.models.basemodel:1548: -15.318168869018555 <- z -> 0.0
14:09:39 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:39 DEBUG opendrift.models.basemodel:836: Lifting 604 elements to seafloor.
14:09:39 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:39 INFO opendrift.models.basemodel:2882: 2023-09-02 22:56:21.121579 - step 198 of 216 - 6875 active elements (0 deactivated)
14:09:39 DEBUG opendrift.models.basemodel:2888: 3125 elements scheduled.
14:09:39 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:39 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:39 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:39 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:39 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:39 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:39 DEBUG opendrift.models.basemodel:1253: Data needed for 6875 elements
14:09:39 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:39 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:39 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:39 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:39 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:39 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:39 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:39 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:39 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:39 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:39 DEBUG opendrift.models.basemodel:1253: Data needed for 6875 elements
14:09:39 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:39 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 22:00:00 (before)
2023-09-02 23:00:00 (after)
14:09:40 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:40 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:40 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:40 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:40 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:40 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:40 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x26x6) for time after (2023-09-02 23:00:00)
14:09:40 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 22:00:00) in space (linearNDFast)
14:09:40 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:40 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 23:00:00) in space (linearNDFast)
14:09:40 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4269 elements, expanding data 1
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 115 elements, expanding data 2
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4269 elements, expanding data 1
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 115 elements, expanding data 2
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4394 elements, expanding data 1
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 407 elements, expanding data 2
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 106 elements, expanding data 3
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4394 elements, expanding data 1
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 407 elements, expanding data 2
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 106 elements, expanding data 3
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4394 elements, expanding data 1
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 407 elements, expanding data 2
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 106 elements, expanding data 3
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4394 elements, expanding data 1
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 407 elements, expanding data 2
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 106 elements, expanding data 3
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4394 elements, expanding data 1
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 407 elements, expanding data 2
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 106 elements, expanding data 3
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4394 elements, expanding data 1
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 407 elements, expanding data 2
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 106 elements, expanding data 3
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5840 elements, expanding data 1
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2429 elements, expanding data 2
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5840 elements, expanding data 1
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2429 elements, expanding data 2
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5840 elements, expanding data 1
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2429 elements, expanding data 2
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5840 elements, expanding data 1
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2429 elements, expanding data 2
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5840 elements, expanding data 1
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2429 elements, expanding data 2
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5840 elements, expanding data 1
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2429 elements, expanding data 2
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4269 elements, expanding data 1
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 115 elements, expanding data 2
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4269 elements, expanding data 1
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 115 elements, expanding data 2
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4269 elements, expanding data 1
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 115 elements, expanding data 2
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4269 elements, expanding data 1
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 115 elements, expanding data 2
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4269 elements, expanding data 1
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 115 elements, expanding data 2
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4269 elements, expanding data 1
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 115 elements, expanding data 2
14:09:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:40 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 22:00:00, weight 0.06) and
after (2023-09-02 23:00:00, weight 0.94) in time
14:09:40 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.11794578255303 and -58.95384446096678 degrees.
14:09:40 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.11794578255303 and -58.95384446096678 degrees.
14:09:40 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:40 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:40 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:40 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:40 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:40 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:40 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.74096 (min) 1.33023 (max)
14:09:40 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.982004 (min) 0.900709 (max)
14:09:40 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -9.3343e-05 (min) 0.000689303 (max)
14:09:40 DEBUG opendrift.models.basemodel:1524: x_wind: -9.44391 (min) 5.59546 (max)
14:09:40 DEBUG opendrift.models.basemodel:1524: y_wind: -7.46474 (min) 7.04199 (max)
14:09:40 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:40 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:40 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:40 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:40 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:40 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:40 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:40 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4825 (max)
14:09:40 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:40 DEBUG opendrift.models.basemodel:1527: 6875 active elements
14:09:40 DEBUG opendrift.models.basemodel:1538: 59.09456930595882 <- latitude -> 59.190403122746545
14:09:40 DEBUG opendrift.models.basemodel:1543: 10.88206479792635 <- longitude -> 11.046166094395936
14:09:40 DEBUG opendrift.models.basemodel:1548: -15.208982467651367 <- z -> 0.0
14:09:40 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:40 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:40 DEBUG opendrift.models.physics_methods:1050: min: 0.019214, mean: 2.429684, max: 8.082509
14:09:40 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.019214, mean: 2.429684, max: 8.082509
14:09:40 DEBUG opendrift.models.basemodel:813: 929 elements hit coastline, moving back to water
14:09:40 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:09:40 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:40 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:40 DEBUG opendrift.models.physics_methods:828: Advecting 36 of 6875 elements above 0.100m with wind-sheared ocean current (0.001655 m/s - 0.136200 m/s)
14:09:40 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:40 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:40 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08083822366579055
14:09:40 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:40 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:40 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:40 DEBUG opendrift.models.oceandrift:582: 735 elements penetrated seafloor, lifting up
14:09:40 DEBUG opendrift.models.oceandrift:600: 109 elements reached seafloor, set to bottom
14:09:40 DEBUG opendrift.models.basemodel:836: Lifting 109 elements to seafloor.
14:09:40 DEBUG opendrift.models.sedimentdrift:112: Settling 109 elements at seafloor
14:09:40 DEBUG opendrift.models.oceandrift:582: 537 elements penetrated seafloor, lifting up
14:09:40 DEBUG opendrift.models.oceandrift:600: 111 elements reached seafloor, set to bottom
14:09:40 DEBUG opendrift.models.basemodel:836: Lifting 111 elements to seafloor.
14:09:40 DEBUG opendrift.models.sedimentdrift:112: Settling 111 elements at seafloor
14:09:40 DEBUG opendrift.models.oceandrift:582: 537 elements penetrated seafloor, lifting up
14:09:40 DEBUG opendrift.models.oceandrift:600: 85 elements reached seafloor, set to bottom
14:09:40 DEBUG opendrift.models.basemodel:836: Lifting 85 elements to seafloor.
14:09:40 DEBUG opendrift.models.sedimentdrift:112: Settling 85 elements at seafloor
14:09:40 DEBUG opendrift.models.oceandrift:582: 500 elements penetrated seafloor, lifting up
14:09:40 DEBUG opendrift.models.oceandrift:600: 89 elements reached seafloor, set to bottom
14:09:40 DEBUG opendrift.models.basemodel:836: Lifting 89 elements to seafloor.
14:09:40 DEBUG opendrift.models.sedimentdrift:112: Settling 89 elements at seafloor
14:09:40 DEBUG opendrift.models.oceandrift:582: 504 elements penetrated seafloor, lifting up
14:09:40 DEBUG opendrift.models.oceandrift:600: 102 elements reached seafloor, set to bottom
14:09:40 DEBUG opendrift.models.basemodel:836: Lifting 102 elements to seafloor.
14:09:40 DEBUG opendrift.models.sedimentdrift:112: Settling 102 elements at seafloor
14:09:40 DEBUG opendrift.models.oceandrift:582: 444 elements penetrated seafloor, lifting up
14:09:40 DEBUG opendrift.models.oceandrift:600: 70 elements reached seafloor, set to bottom
14:09:40 DEBUG opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
14:09:40 DEBUG opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
14:09:40 DEBUG opendrift.models.oceandrift:582: 426 elements penetrated seafloor, lifting up
14:09:40 DEBUG opendrift.models.oceandrift:600: 86 elements reached seafloor, set to bottom
14:09:40 DEBUG opendrift.models.basemodel:836: Lifting 86 elements to seafloor.
14:09:40 DEBUG opendrift.models.sedimentdrift:112: Settling 86 elements at seafloor
14:09:40 DEBUG opendrift.models.oceandrift:582: 396 elements penetrated seafloor, lifting up
14:09:40 DEBUG opendrift.models.oceandrift:600: 80 elements reached seafloor, set to bottom
14:09:40 DEBUG opendrift.models.basemodel:836: Lifting 80 elements to seafloor.
14:09:40 DEBUG opendrift.models.sedimentdrift:112: Settling 80 elements at seafloor
14:09:40 DEBUG opendrift.models.oceandrift:582: 428 elements penetrated seafloor, lifting up
14:09:40 DEBUG opendrift.models.oceandrift:600: 65 elements reached seafloor, set to bottom
14:09:40 DEBUG opendrift.models.basemodel:836: Lifting 65 elements to seafloor.
14:09:40 DEBUG opendrift.models.sedimentdrift:112: Settling 65 elements at seafloor
14:09:40 DEBUG opendrift.models.oceandrift:582: 415 elements penetrated seafloor, lifting up
14:09:40 DEBUG opendrift.models.oceandrift:600: 80 elements reached seafloor, set to bottom
14:09:40 DEBUG opendrift.models.basemodel:836: Lifting 80 elements to seafloor.
14:09:40 DEBUG opendrift.models.sedimentdrift:112: Settling 80 elements at seafloor
14:09:40 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:40 DEBUG opendrift.models.basemodel:2945: 6875 active elements (0 deactivated)
14:09:40 DEBUG opendrift.models.basemodel:1658: to be seeded: 3125, already seeded 6875
14:09:40 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:09:40 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:40 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:40 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:40 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:40 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:40 DEBUG opendrift.models.basemodel:1253: Data needed for 6910 elements
14:09:40 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:40 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 23:00:00 (before)
2023-09-03 00:00:00 (after)
14:09:40 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 23:00:00) in space (linearNDFast)
14:09:40 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:40 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:40 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:40 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:40 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:40 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:40 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5004 (max)
14:09:40 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:40 DEBUG opendrift.models.basemodel:1527: 6910 active elements
14:09:40 DEBUG opendrift.models.basemodel:1538: 59.09334192239784 <- latitude -> 59.19001754419449
14:09:40 DEBUG opendrift.models.basemodel:1543: 10.881471652112742 <- longitude -> 11.041811302522781
14:09:40 DEBUG opendrift.models.basemodel:1548: -14.838835945129395 <- z -> 0.0
14:09:40 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:40 DEBUG opendrift.models.basemodel:836: Lifting 625 elements to seafloor.
14:09:40 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:40 INFO opendrift.models.basemodel:2882: 2023-09-02 23:06:21.121579 - step 199 of 216 - 6910 active elements (0 deactivated)
14:09:40 DEBUG opendrift.models.basemodel:2888: 3090 elements scheduled.
14:09:40 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:40 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:40 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:40 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:40 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:40 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:40 DEBUG opendrift.models.basemodel:1253: Data needed for 6910 elements
14:09:40 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:40 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:40 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:40 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:40 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:40 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:40 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:40 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:40 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:40 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:40 DEBUG opendrift.models.basemodel:1253: Data needed for 6910 elements
14:09:40 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:40 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 23:00:00 (before)
2023-09-03 00:00:00 (after)
14:09:41 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:41 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:41 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:41 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:41 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:41 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:41 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x27x5) for time after (2023-09-03 00:00:00)
14:09:41 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 23:00:00) in space (linearNDFast)
14:09:41 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:41 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-03 00:00:00) in space (linearNDFast)
14:09:41 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4316 elements, expanding data 1
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 129 elements, expanding data 2
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4316 elements, expanding data 1
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 129 elements, expanding data 2
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4444 elements, expanding data 1
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 413 elements, expanding data 2
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 114 elements, expanding data 3
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4444 elements, expanding data 1
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 413 elements, expanding data 2
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 114 elements, expanding data 3
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4444 elements, expanding data 1
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 413 elements, expanding data 2
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 114 elements, expanding data 3
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4444 elements, expanding data 1
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 413 elements, expanding data 2
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 114 elements, expanding data 3
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4444 elements, expanding data 1
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 413 elements, expanding data 2
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 114 elements, expanding data 3
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5884 elements, expanding data 1
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2492 elements, expanding data 2
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5884 elements, expanding data 1
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2492 elements, expanding data 2
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5884 elements, expanding data 1
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2492 elements, expanding data 2
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5884 elements, expanding data 1
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2492 elements, expanding data 2
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5884 elements, expanding data 1
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2492 elements, expanding data 2
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4316 elements, expanding data 1
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 129 elements, expanding data 2
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4316 elements, expanding data 1
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 129 elements, expanding data 2
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4316 elements, expanding data 1
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 129 elements, expanding data 2
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4316 elements, expanding data 1
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 129 elements, expanding data 2
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4316 elements, expanding data 1
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 129 elements, expanding data 2
14:09:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:41 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 23:00:00, weight 0.89) and
after (2023-09-03 00:00:00, weight 0.11) in time
14:09:41 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.11853891943435 and -58.958199250230734 degrees.
14:09:41 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.11853891943435 and -58.958199250230734 degrees.
14:09:41 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:41 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:41 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:41 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:41 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:41 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:41 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.726445 (min) 1.33563 (max)
14:09:41 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.09278 (min) 0.725624 (max)
14:09:41 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -8.27218e-05 (min) 0.000618053 (max)
14:09:41 DEBUG opendrift.models.basemodel:1524: x_wind: -10.9323 (min) 5.00022 (max)
14:09:41 DEBUG opendrift.models.basemodel:1524: y_wind: -7.23963 (min) 7.62175 (max)
14:09:41 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:41 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:41 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:41 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:41 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:41 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:41 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:41 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5004 (max)
14:09:41 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:41 DEBUG opendrift.models.basemodel:1527: 6910 active elements
14:09:41 DEBUG opendrift.models.basemodel:1538: 59.09334192239784 <- latitude -> 59.19001754419449
14:09:41 DEBUG opendrift.models.basemodel:1543: 10.881471652112742 <- longitude -> 11.041811302522781
14:09:41 DEBUG opendrift.models.basemodel:1548: -14.770918846130371 <- z -> 0.0
14:09:41 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:41 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:41 DEBUG opendrift.models.physics_methods:1050: min: 0.015167, mean: 2.450376, max: 9.503821
14:09:41 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.015167, mean: 2.450376, max: 9.503821
14:09:41 DEBUG opendrift.models.basemodel:813: 969 elements hit coastline, moving back to water
14:09:41 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:09:41 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:41 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:41 DEBUG opendrift.models.physics_methods:828: Advecting 37 of 6910 elements above 0.100m with wind-sheared ocean current (0.004528 m/s - 0.110593 m/s)
14:09:41 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:41 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:41 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.1117672938390541
14:09:41 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:41 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:41 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:41 DEBUG opendrift.models.oceandrift:582: 752 elements penetrated seafloor, lifting up
14:09:41 DEBUG opendrift.models.oceandrift:600: 110 elements reached seafloor, set to bottom
14:09:41 DEBUG opendrift.models.basemodel:836: Lifting 110 elements to seafloor.
14:09:41 DEBUG opendrift.models.sedimentdrift:112: Settling 110 elements at seafloor
14:09:42 DEBUG opendrift.models.oceandrift:582: 563 elements penetrated seafloor, lifting up
14:09:42 DEBUG opendrift.models.oceandrift:600: 105 elements reached seafloor, set to bottom
14:09:42 DEBUG opendrift.models.basemodel:836: Lifting 105 elements to seafloor.
14:09:42 DEBUG opendrift.models.sedimentdrift:112: Settling 105 elements at seafloor
14:09:42 DEBUG opendrift.models.oceandrift:582: 546 elements penetrated seafloor, lifting up
14:09:42 DEBUG opendrift.models.oceandrift:600: 83 elements reached seafloor, set to bottom
14:09:42 DEBUG opendrift.models.basemodel:836: Lifting 83 elements to seafloor.
14:09:42 DEBUG opendrift.models.sedimentdrift:112: Settling 83 elements at seafloor
14:09:42 DEBUG opendrift.models.oceandrift:582: 486 elements penetrated seafloor, lifting up
14:09:42 DEBUG opendrift.models.oceandrift:600: 88 elements reached seafloor, set to bottom
14:09:42 DEBUG opendrift.models.basemodel:836: Lifting 88 elements to seafloor.
14:09:42 DEBUG opendrift.models.sedimentdrift:112: Settling 88 elements at seafloor
14:09:42 DEBUG opendrift.models.oceandrift:582: 475 elements penetrated seafloor, lifting up
14:09:42 DEBUG opendrift.models.oceandrift:600: 97 elements reached seafloor, set to bottom
14:09:42 DEBUG opendrift.models.basemodel:836: Lifting 97 elements to seafloor.
14:09:42 DEBUG opendrift.models.sedimentdrift:112: Settling 97 elements at seafloor
14:09:42 DEBUG opendrift.models.oceandrift:582: 473 elements penetrated seafloor, lifting up
14:09:42 DEBUG opendrift.models.oceandrift:600: 76 elements reached seafloor, set to bottom
14:09:42 DEBUG opendrift.models.basemodel:836: Lifting 76 elements to seafloor.
14:09:42 DEBUG opendrift.models.sedimentdrift:112: Settling 76 elements at seafloor
14:09:42 DEBUG opendrift.models.oceandrift:582: 457 elements penetrated seafloor, lifting up
14:09:42 DEBUG opendrift.models.oceandrift:600: 78 elements reached seafloor, set to bottom
14:09:42 DEBUG opendrift.models.basemodel:836: Lifting 78 elements to seafloor.
14:09:42 DEBUG opendrift.models.sedimentdrift:112: Settling 78 elements at seafloor
14:09:42 DEBUG opendrift.models.oceandrift:582: 434 elements penetrated seafloor, lifting up
14:09:42 DEBUG opendrift.models.oceandrift:600: 83 elements reached seafloor, set to bottom
14:09:42 DEBUG opendrift.models.basemodel:836: Lifting 83 elements to seafloor.
14:09:42 DEBUG opendrift.models.sedimentdrift:112: Settling 83 elements at seafloor
14:09:42 DEBUG opendrift.models.oceandrift:582: 388 elements penetrated seafloor, lifting up
14:09:42 DEBUG opendrift.models.oceandrift:600: 58 elements reached seafloor, set to bottom
14:09:42 DEBUG opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
14:09:42 DEBUG opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
14:09:42 DEBUG opendrift.models.oceandrift:582: 394 elements penetrated seafloor, lifting up
14:09:42 DEBUG opendrift.models.oceandrift:600: 81 elements reached seafloor, set to bottom
14:09:42 DEBUG opendrift.models.basemodel:836: Lifting 81 elements to seafloor.
14:09:42 DEBUG opendrift.models.sedimentdrift:112: Settling 81 elements at seafloor
14:09:42 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:42 DEBUG opendrift.models.basemodel:2945: 6910 active elements (0 deactivated)
14:09:42 DEBUG opendrift.models.basemodel:1658: to be seeded: 3090, already seeded 6910
14:09:42 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:09:42 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:42 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:42 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:42 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:42 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:42 DEBUG opendrift.models.basemodel:1253: Data needed for 6944 elements
14:09:42 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:42 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 23:00:00 (before)
2023-09-03 00:00:00 (after)
14:09:42 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 23:00:00) in space (linearNDFast)
14:09:42 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:42 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:42 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:42 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:42 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:42 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:42 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5085 (max)
14:09:42 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:42 DEBUG opendrift.models.basemodel:1527: 6944 active elements
14:09:42 DEBUG opendrift.models.basemodel:1538: 59.09323698998981 <- latitude -> 59.18957139560832
14:09:42 DEBUG opendrift.models.basemodel:1543: 10.879011080947507 <- longitude -> 11.042432050348177
14:09:42 DEBUG opendrift.models.basemodel:1548: -15.016536564901568 <- z -> 0.0
14:09:42 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:42 DEBUG opendrift.models.basemodel:836: Lifting 612 elements to seafloor.
14:09:42 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:42 INFO opendrift.models.basemodel:2882: 2023-09-02 23:16:21.121579 - step 200 of 216 - 6944 active elements (0 deactivated)
14:09:42 DEBUG opendrift.models.basemodel:2888: 3056 elements scheduled.
14:09:42 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:42 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:42 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:42 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:42 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:42 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:42 DEBUG opendrift.models.basemodel:1253: Data needed for 6944 elements
14:09:42 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:42 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:42 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:42 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:42 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:42 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:42 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:42 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:42 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:42 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:42 DEBUG opendrift.models.basemodel:1253: Data needed for 6944 elements
14:09:42 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:42 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 23:00:00 (before)
2023-09-03 00:00:00 (after)
14:09:42 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:42 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:42 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:42 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:42 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:42 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:42 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x27x6) for time after (2023-09-03 00:00:00)
14:09:42 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 23:00:00) in space (linearNDFast)
14:09:42 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:42 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-03 00:00:00) in space (linearNDFast)
14:09:42 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4358 elements, expanding data 1
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 111 elements, expanding data 2
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4358 elements, expanding data 1
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 111 elements, expanding data 2
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4468 elements, expanding data 1
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 415 elements, expanding data 2
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 103 elements, expanding data 3
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4468 elements, expanding data 1
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 415 elements, expanding data 2
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 103 elements, expanding data 3
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4468 elements, expanding data 1
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 415 elements, expanding data 2
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 103 elements, expanding data 3
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4468 elements, expanding data 1
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 415 elements, expanding data 2
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 103 elements, expanding data 3
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4468 elements, expanding data 1
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 415 elements, expanding data 2
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 103 elements, expanding data 3
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4468 elements, expanding data 1
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 415 elements, expanding data 2
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 103 elements, expanding data 3
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5925 elements, expanding data 1
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2474 elements, expanding data 2
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5925 elements, expanding data 1
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2474 elements, expanding data 2
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5925 elements, expanding data 1
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2474 elements, expanding data 2
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5925 elements, expanding data 1
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2474 elements, expanding data 2
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5925 elements, expanding data 1
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2474 elements, expanding data 2
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5925 elements, expanding data 1
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2474 elements, expanding data 2
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4358 elements, expanding data 1
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 111 elements, expanding data 2
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4358 elements, expanding data 1
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 111 elements, expanding data 2
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4358 elements, expanding data 1
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 111 elements, expanding data 2
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4358 elements, expanding data 1
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 111 elements, expanding data 2
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4358 elements, expanding data 1
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 111 elements, expanding data 2
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4358 elements, expanding data 1
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 111 elements, expanding data 2
14:09:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:42 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 23:00:00, weight 0.73) and
after (2023-09-03 00:00:00, weight 0.27) in time
14:09:42 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.12099949382889 and -58.957578501561855 degrees.
14:09:42 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.12099949382889 and -58.957578501561855 degrees.
14:09:42 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:42 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:42 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:42 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:42 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:42 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:42 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.810383 (min) 1.15833 (max)
14:09:42 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.0482 (min) 0.847213 (max)
14:09:42 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000154912 (min) 0.000627122 (max)
14:09:42 DEBUG opendrift.models.basemodel:1524: x_wind: -9.32024 (min) 5.51643 (max)
14:09:42 DEBUG opendrift.models.basemodel:1524: y_wind: -7.87298 (min) 7.2513 (max)
14:09:42 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:42 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:42 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:42 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:42 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:42 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:42 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:42 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5085 (max)
14:09:42 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:42 DEBUG opendrift.models.basemodel:1527: 6944 active elements
14:09:42 DEBUG opendrift.models.basemodel:1538: 59.09323698998981 <- latitude -> 59.18957139560832
14:09:42 DEBUG opendrift.models.basemodel:1543: 10.879011080947507 <- longitude -> 11.042432050348177
14:09:42 DEBUG opendrift.models.basemodel:1548: -15.016536564901568 <- z -> 0.0
14:09:42 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:42 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:42 DEBUG opendrift.models.physics_methods:1050: min: 0.031534, mean: 2.453904, max: 8.047570
14:09:42 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.031534, mean: 2.453904, max: 8.047570
14:09:42 DEBUG opendrift.models.basemodel:813: 977 elements hit coastline, moving back to water
14:09:42 DEBUG opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
14:09:42 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:42 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:42 DEBUG opendrift.models.physics_methods:828: Advecting 34 of 6944 elements above 0.100m with wind-sheared ocean current (0.011051 m/s - 0.125595 m/s)
14:09:42 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:42 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:42 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08014086293037415
14:09:42 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:42 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:42 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:42 DEBUG opendrift.models.oceandrift:582: 721 elements penetrated seafloor, lifting up
14:09:42 DEBUG opendrift.models.oceandrift:600: 105 elements reached seafloor, set to bottom
14:09:42 DEBUG opendrift.models.basemodel:836: Lifting 105 elements to seafloor.
14:09:42 DEBUG opendrift.models.sedimentdrift:112: Settling 105 elements at seafloor
14:09:42 DEBUG opendrift.models.oceandrift:582: 571 elements penetrated seafloor, lifting up
14:09:42 DEBUG opendrift.models.oceandrift:600: 105 elements reached seafloor, set to bottom
14:09:42 DEBUG opendrift.models.basemodel:836: Lifting 105 elements to seafloor.
14:09:42 DEBUG opendrift.models.sedimentdrift:112: Settling 105 elements at seafloor
14:09:42 DEBUG opendrift.models.oceandrift:582: 486 elements penetrated seafloor, lifting up
14:09:42 DEBUG opendrift.models.oceandrift:600: 91 elements reached seafloor, set to bottom
14:09:42 DEBUG opendrift.models.basemodel:836: Lifting 91 elements to seafloor.
14:09:42 DEBUG opendrift.models.sedimentdrift:112: Settling 91 elements at seafloor
14:09:42 DEBUG opendrift.models.oceandrift:582: 488 elements penetrated seafloor, lifting up
14:09:42 DEBUG opendrift.models.oceandrift:600: 111 elements reached seafloor, set to bottom
14:09:42 DEBUG opendrift.models.basemodel:836: Lifting 111 elements to seafloor.
14:09:42 DEBUG opendrift.models.sedimentdrift:112: Settling 111 elements at seafloor
14:09:42 DEBUG opendrift.models.oceandrift:582: 452 elements penetrated seafloor, lifting up
14:09:42 DEBUG opendrift.models.oceandrift:600: 79 elements reached seafloor, set to bottom
14:09:42 DEBUG opendrift.models.basemodel:836: Lifting 79 elements to seafloor.
14:09:42 DEBUG opendrift.models.sedimentdrift:112: Settling 79 elements at seafloor
14:09:42 DEBUG opendrift.models.oceandrift:582: 423 elements penetrated seafloor, lifting up
14:09:42 DEBUG opendrift.models.oceandrift:600: 83 elements reached seafloor, set to bottom
14:09:42 DEBUG opendrift.models.basemodel:836: Lifting 83 elements to seafloor.
14:09:42 DEBUG opendrift.models.sedimentdrift:112: Settling 83 elements at seafloor
14:09:42 DEBUG opendrift.models.oceandrift:582: 411 elements penetrated seafloor, lifting up
14:09:42 DEBUG opendrift.models.oceandrift:600: 78 elements reached seafloor, set to bottom
14:09:42 DEBUG opendrift.models.basemodel:836: Lifting 78 elements to seafloor.
14:09:42 DEBUG opendrift.models.sedimentdrift:112: Settling 78 elements at seafloor
14:09:42 DEBUG opendrift.models.oceandrift:582: 443 elements penetrated seafloor, lifting up
14:09:42 DEBUG opendrift.models.oceandrift:600: 78 elements reached seafloor, set to bottom
14:09:42 DEBUG opendrift.models.basemodel:836: Lifting 78 elements to seafloor.
14:09:42 DEBUG opendrift.models.sedimentdrift:112: Settling 78 elements at seafloor
14:09:42 DEBUG opendrift.models.oceandrift:582: 400 elements penetrated seafloor, lifting up
14:09:42 DEBUG opendrift.models.oceandrift:600: 70 elements reached seafloor, set to bottom
14:09:42 DEBUG opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
14:09:42 DEBUG opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
14:09:42 DEBUG opendrift.models.oceandrift:582: 363 elements penetrated seafloor, lifting up
14:09:42 DEBUG opendrift.models.oceandrift:600: 72 elements reached seafloor, set to bottom
14:09:42 DEBUG opendrift.models.basemodel:836: Lifting 72 elements to seafloor.
14:09:42 DEBUG opendrift.models.sedimentdrift:112: Settling 72 elements at seafloor
14:09:42 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:42 DEBUG opendrift.models.basemodel:2945: 6944 active elements (0 deactivated)
14:09:42 DEBUG opendrift.models.basemodel:1658: to be seeded: 3056, already seeded 6944
14:09:42 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:09:42 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:42 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:42 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:42 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:42 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:42 DEBUG opendrift.models.basemodel:1253: Data needed for 6979 elements
14:09:42 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:42 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 23:00:00 (before)
2023-09-03 00:00:00 (after)
14:09:42 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 23:00:00) in space (linearNDFast)
14:09:42 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:42 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:42 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:42 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:42 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:42 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:42 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4844 (max)
14:09:42 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:42 DEBUG opendrift.models.basemodel:1527: 6979 active elements
14:09:42 DEBUG opendrift.models.basemodel:1538: 59.09334456002519 <- latitude -> 59.18881949701641
14:09:42 DEBUG opendrift.models.basemodel:1543: 10.877008854032368 <- longitude -> 11.046314291139382
14:09:42 DEBUG opendrift.models.basemodel:1548: -14.691910540481524 <- z -> 0.0
14:09:42 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:42 DEBUG opendrift.models.basemodel:836: Lifting 628 elements to seafloor.
14:09:42 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:42 INFO opendrift.models.basemodel:2882: 2023-09-02 23:26:21.121579 - step 201 of 216 - 6979 active elements (0 deactivated)
14:09:42 DEBUG opendrift.models.basemodel:2888: 3021 elements scheduled.
14:09:42 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:42 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:42 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:42 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:42 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:42 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:42 DEBUG opendrift.models.basemodel:1253: Data needed for 6979 elements
14:09:42 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:42 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:42 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:42 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:42 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:42 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:42 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:42 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:42 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:42 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:42 DEBUG opendrift.models.basemodel:1253: Data needed for 6979 elements
14:09:42 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:42 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 23:00:00 (before)
2023-09-03 00:00:00 (after)
14:09:43 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:43 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:43 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:43 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:43 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:43 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:43 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x27x5) for time after (2023-09-03 00:00:00)
14:09:43 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 23:00:00) in space (linearNDFast)
14:09:43 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:43 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-03 00:00:00) in space (linearNDFast)
14:09:43 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4372 elements, expanding data 1
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 122 elements, expanding data 2
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4372 elements, expanding data 1
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 122 elements, expanding data 2
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4499 elements, expanding data 1
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 433 elements, expanding data 2
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 110 elements, expanding data 3
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4499 elements, expanding data 1
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 433 elements, expanding data 2
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 110 elements, expanding data 3
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4499 elements, expanding data 1
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 433 elements, expanding data 2
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 110 elements, expanding data 3
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4499 elements, expanding data 1
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 433 elements, expanding data 2
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 110 elements, expanding data 3
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4499 elements, expanding data 1
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 433 elements, expanding data 2
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 110 elements, expanding data 3
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5950 elements, expanding data 1
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2524 elements, expanding data 2
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5950 elements, expanding data 1
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2524 elements, expanding data 2
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5950 elements, expanding data 1
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2524 elements, expanding data 2
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5950 elements, expanding data 1
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2524 elements, expanding data 2
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5950 elements, expanding data 1
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2524 elements, expanding data 2
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4372 elements, expanding data 1
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 122 elements, expanding data 2
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4372 elements, expanding data 1
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 122 elements, expanding data 2
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4372 elements, expanding data 1
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 122 elements, expanding data 2
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4372 elements, expanding data 1
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 122 elements, expanding data 2
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4372 elements, expanding data 1
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 122 elements, expanding data 2
14:09:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:43 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 23:00:00, weight 0.56) and
after (2023-09-03 00:00:00, weight 0.44) in time
14:09:43 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.123001727213456 and -58.95369625193864 degrees.
14:09:43 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.123001727213456 and -58.95369625193864 degrees.
14:09:43 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:43 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:43 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:43 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:43 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:43 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:43 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.8192 (min) 1.26033 (max)
14:09:43 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.01473 (min) 0.818669 (max)
14:09:43 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000178693 (min) 0.000665584 (max)
14:09:43 DEBUG opendrift.models.basemodel:1524: x_wind: -9.15806 (min) 6.65863 (max)
14:09:43 DEBUG opendrift.models.basemodel:1524: y_wind: -7.47909 (min) 7.46972 (max)
14:09:43 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:43 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:43 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:43 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:43 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:43 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:43 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:43 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4844 (max)
14:09:43 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:43 DEBUG opendrift.models.basemodel:1527: 6979 active elements
14:09:43 DEBUG opendrift.models.basemodel:1538: 59.09334456002519 <- latitude -> 59.18881949701641
14:09:43 DEBUG opendrift.models.basemodel:1543: 10.877008854032368 <- longitude -> 11.046314291139382
14:09:43 DEBUG opendrift.models.basemodel:1548: -14.691910540481524 <- z -> 0.0
14:09:43 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:43 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:43 DEBUG opendrift.models.physics_methods:1050: min: 0.018128, mean: 2.439956, max: 7.853434
14:09:43 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.018128, mean: 2.439956, max: 7.853434
14:09:43 DEBUG opendrift.models.basemodel:813: 1036 elements hit coastline, moving back to water
14:09:43 DEBUG opendrift.models.basemodel:836: Lifting 241 elements to seafloor.
14:09:43 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:43 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:43 DEBUG opendrift.models.physics_methods:828: Advecting 37 of 6979 elements above 0.100m with wind-sheared ocean current (0.002299 m/s - 0.154146 m/s)
14:09:43 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:43 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:43 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07632112306411742
14:09:43 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:43 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:43 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:43 DEBUG opendrift.models.oceandrift:582: 746 elements penetrated seafloor, lifting up
14:09:43 DEBUG opendrift.models.oceandrift:600: 119 elements reached seafloor, set to bottom
14:09:43 DEBUG opendrift.models.basemodel:836: Lifting 119 elements to seafloor.
14:09:43 DEBUG opendrift.models.sedimentdrift:112: Settling 119 elements at seafloor
14:09:43 DEBUG opendrift.models.oceandrift:582: 591 elements penetrated seafloor, lifting up
14:09:43 DEBUG opendrift.models.oceandrift:600: 117 elements reached seafloor, set to bottom
14:09:43 DEBUG opendrift.models.basemodel:836: Lifting 117 elements to seafloor.
14:09:43 DEBUG opendrift.models.sedimentdrift:112: Settling 117 elements at seafloor
14:09:43 DEBUG opendrift.models.oceandrift:582: 534 elements penetrated seafloor, lifting up
14:09:43 DEBUG opendrift.models.oceandrift:600: 93 elements reached seafloor, set to bottom
14:09:43 DEBUG opendrift.models.basemodel:836: Lifting 93 elements to seafloor.
14:09:43 DEBUG opendrift.models.sedimentdrift:112: Settling 93 elements at seafloor
14:09:43 DEBUG opendrift.models.oceandrift:582: 474 elements penetrated seafloor, lifting up
14:09:43 DEBUG opendrift.models.oceandrift:600: 91 elements reached seafloor, set to bottom
14:09:43 DEBUG opendrift.models.basemodel:836: Lifting 91 elements to seafloor.
14:09:43 DEBUG opendrift.models.sedimentdrift:112: Settling 91 elements at seafloor
14:09:43 DEBUG opendrift.models.oceandrift:582: 427 elements penetrated seafloor, lifting up
14:09:43 DEBUG opendrift.models.oceandrift:600: 87 elements reached seafloor, set to bottom
14:09:43 DEBUG opendrift.models.basemodel:836: Lifting 87 elements to seafloor.
14:09:43 DEBUG opendrift.models.sedimentdrift:112: Settling 87 elements at seafloor
14:09:43 DEBUG opendrift.models.oceandrift:582: 459 elements penetrated seafloor, lifting up
14:09:43 DEBUG opendrift.models.oceandrift:600: 75 elements reached seafloor, set to bottom
14:09:43 DEBUG opendrift.models.basemodel:836: Lifting 75 elements to seafloor.
14:09:43 DEBUG opendrift.models.sedimentdrift:112: Settling 75 elements at seafloor
14:09:43 DEBUG opendrift.models.oceandrift:582: 432 elements penetrated seafloor, lifting up
14:09:43 DEBUG opendrift.models.oceandrift:600: 72 elements reached seafloor, set to bottom
14:09:43 DEBUG opendrift.models.basemodel:836: Lifting 72 elements to seafloor.
14:09:43 DEBUG opendrift.models.sedimentdrift:112: Settling 72 elements at seafloor
14:09:43 DEBUG opendrift.models.oceandrift:582: 420 elements penetrated seafloor, lifting up
14:09:43 DEBUG opendrift.models.oceandrift:600: 65 elements reached seafloor, set to bottom
14:09:43 DEBUG opendrift.models.basemodel:836: Lifting 65 elements to seafloor.
14:09:43 DEBUG opendrift.models.sedimentdrift:112: Settling 65 elements at seafloor
14:09:43 DEBUG opendrift.models.oceandrift:582: 427 elements penetrated seafloor, lifting up
14:09:43 DEBUG opendrift.models.oceandrift:600: 65 elements reached seafloor, set to bottom
14:09:43 DEBUG opendrift.models.basemodel:836: Lifting 65 elements to seafloor.
14:09:43 DEBUG opendrift.models.sedimentdrift:112: Settling 65 elements at seafloor
14:09:43 DEBUG opendrift.models.oceandrift:582: 398 elements penetrated seafloor, lifting up
14:09:43 DEBUG opendrift.models.oceandrift:600: 58 elements reached seafloor, set to bottom
14:09:43 DEBUG opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
14:09:43 DEBUG opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
14:09:43 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:43 DEBUG opendrift.models.basemodel:2945: 6979 active elements (0 deactivated)
14:09:43 DEBUG opendrift.models.basemodel:1658: to be seeded: 3021, already seeded 6979
14:09:43 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:09:43 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:43 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:43 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:43 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:43 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:43 DEBUG opendrift.models.basemodel:1253: Data needed for 7014 elements
14:09:43 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:43 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 23:00:00 (before)
2023-09-03 00:00:00 (after)
14:09:43 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 23:00:00) in space (linearNDFast)
14:09:43 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:43 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:43 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:43 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:43 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:43 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:43 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4276 (max)
14:09:43 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:43 DEBUG opendrift.models.basemodel:1527: 7014 active elements
14:09:43 DEBUG opendrift.models.basemodel:1538: 59.09294055697419 <- latitude -> 59.189597451795265
14:09:43 DEBUG opendrift.models.basemodel:1543: 10.875763355421084 <- longitude -> 11.048539394539533
14:09:43 DEBUG opendrift.models.basemodel:1548: -15.13023208618164 <- z -> 0.0
14:09:43 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:43 DEBUG opendrift.models.basemodel:836: Lifting 599 elements to seafloor.
14:09:43 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:43 INFO opendrift.models.basemodel:2882: 2023-09-02 23:36:21.121579 - step 202 of 216 - 7014 active elements (0 deactivated)
14:09:43 DEBUG opendrift.models.basemodel:2888: 2986 elements scheduled.
14:09:43 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:43 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:43 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:43 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:43 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:43 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:43 DEBUG opendrift.models.basemodel:1253: Data needed for 7014 elements
14:09:43 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:43 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:43 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:43 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:43 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:43 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:43 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:43 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:43 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:43 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:43 DEBUG opendrift.models.basemodel:1253: Data needed for 7014 elements
14:09:43 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:43 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 23:00:00 (before)
2023-09-03 00:00:00 (after)
14:09:44 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:44 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:44 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:44 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:44 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:44 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:44 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x27x6) for time after (2023-09-03 00:00:00)
14:09:44 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 23:00:00) in space (linearNDFast)
14:09:44 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:44 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-03 00:00:00) in space (linearNDFast)
14:09:44 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4453 elements, expanding data 1
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 116 elements, expanding data 2
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4453 elements, expanding data 1
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 116 elements, expanding data 2
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4569 elements, expanding data 1
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 438 elements, expanding data 2
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 109 elements, expanding data 3
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4569 elements, expanding data 1
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 438 elements, expanding data 2
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 109 elements, expanding data 3
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4569 elements, expanding data 1
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 438 elements, expanding data 2
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 109 elements, expanding data 3
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4569 elements, expanding data 1
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 438 elements, expanding data 2
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 109 elements, expanding data 3
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4569 elements, expanding data 1
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 438 elements, expanding data 2
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 109 elements, expanding data 3
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4569 elements, expanding data 1
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 438 elements, expanding data 2
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 109 elements, expanding data 3
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6022 elements, expanding data 1
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2561 elements, expanding data 2
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6022 elements, expanding data 1
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2561 elements, expanding data 2
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6022 elements, expanding data 1
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2561 elements, expanding data 2
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6022 elements, expanding data 1
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2561 elements, expanding data 2
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6022 elements, expanding data 1
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2561 elements, expanding data 2
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6022 elements, expanding data 1
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2561 elements, expanding data 2
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4453 elements, expanding data 1
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 116 elements, expanding data 2
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4453 elements, expanding data 1
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 116 elements, expanding data 2
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4453 elements, expanding data 1
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 116 elements, expanding data 2
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4453 elements, expanding data 1
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 116 elements, expanding data 2
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4453 elements, expanding data 1
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 116 elements, expanding data 2
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4453 elements, expanding data 1
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 116 elements, expanding data 2
14:09:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:44 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 23:00:00, weight 0.39) and
after (2023-09-03 00:00:00, weight 0.61) in time
14:09:44 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.12424721931025 and -58.95147116091935 degrees.
14:09:44 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.12424721931025 and -58.95147116091935 degrees.
14:09:44 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:44 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:44 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:44 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:44 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:44 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:44 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.709301 (min) 1.20309 (max)
14:09:44 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.01365 (min) 0.809415 (max)
14:09:44 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000152264 (min) 0.000646894 (max)
14:09:44 DEBUG opendrift.models.basemodel:1524: x_wind: -9.44266 (min) 6.51372 (max)
14:09:44 DEBUG opendrift.models.basemodel:1524: y_wind: -8.54908 (min) 6.77986 (max)
14:09:44 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:44 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:44 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:44 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:44 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:44 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:44 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:44 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4276 (max)
14:09:44 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:44 DEBUG opendrift.models.basemodel:1527: 7014 active elements
14:09:44 DEBUG opendrift.models.basemodel:1538: 59.09294055697419 <- latitude -> 59.189597451795265
14:09:44 DEBUG opendrift.models.basemodel:1543: 10.875763355421084 <- longitude -> 11.048539394539533
14:09:44 DEBUG opendrift.models.basemodel:1548: -15.096794128417969 <- z -> 0.0
14:09:44 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:44 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:44 DEBUG opendrift.models.physics_methods:1050: min: 0.048709, mean: 2.478224, max: 8.271579
14:09:44 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.048709, mean: 2.478224, max: 8.271579
14:09:44 DEBUG opendrift.models.basemodel:813: 1005 elements hit coastline, moving back to water
14:09:44 DEBUG opendrift.models.basemodel:836: Lifting 217 elements to seafloor.
14:09:44 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:44 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:44 DEBUG opendrift.models.physics_methods:828: Advecting 37 of 7014 elements above 0.100m with wind-sheared ocean current (0.007734 m/s - 0.143983 m/s)
14:09:44 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:44 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:44 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08466425767238617
14:09:44 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:44 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:44 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:44 DEBUG opendrift.models.oceandrift:582: 785 elements penetrated seafloor, lifting up
14:09:44 DEBUG opendrift.models.oceandrift:600: 104 elements reached seafloor, set to bottom
14:09:44 DEBUG opendrift.models.basemodel:836: Lifting 104 elements to seafloor.
14:09:44 DEBUG opendrift.models.sedimentdrift:112: Settling 104 elements at seafloor
14:09:44 DEBUG opendrift.models.oceandrift:582: 595 elements penetrated seafloor, lifting up
14:09:44 DEBUG opendrift.models.oceandrift:600: 107 elements reached seafloor, set to bottom
14:09:44 DEBUG opendrift.models.basemodel:836: Lifting 107 elements to seafloor.
14:09:44 DEBUG opendrift.models.sedimentdrift:112: Settling 107 elements at seafloor
14:09:44 DEBUG opendrift.models.oceandrift:582: 542 elements penetrated seafloor, lifting up
14:09:44 DEBUG opendrift.models.oceandrift:600: 115 elements reached seafloor, set to bottom
14:09:44 DEBUG opendrift.models.basemodel:836: Lifting 115 elements to seafloor.
14:09:44 DEBUG opendrift.models.sedimentdrift:112: Settling 115 elements at seafloor
14:09:44 DEBUG opendrift.models.oceandrift:582: 518 elements penetrated seafloor, lifting up
14:09:44 DEBUG opendrift.models.oceandrift:600: 99 elements reached seafloor, set to bottom
14:09:44 DEBUG opendrift.models.basemodel:836: Lifting 99 elements to seafloor.
14:09:44 DEBUG opendrift.models.sedimentdrift:112: Settling 99 elements at seafloor
14:09:44 DEBUG opendrift.models.oceandrift:582: 440 elements penetrated seafloor, lifting up
14:09:44 DEBUG opendrift.models.oceandrift:600: 92 elements reached seafloor, set to bottom
14:09:44 DEBUG opendrift.models.basemodel:836: Lifting 92 elements to seafloor.
14:09:44 DEBUG opendrift.models.sedimentdrift:112: Settling 92 elements at seafloor
14:09:44 DEBUG opendrift.models.oceandrift:582: 418 elements penetrated seafloor, lifting up
14:09:44 DEBUG opendrift.models.oceandrift:600: 83 elements reached seafloor, set to bottom
14:09:44 DEBUG opendrift.models.basemodel:836: Lifting 83 elements to seafloor.
14:09:44 DEBUG opendrift.models.sedimentdrift:112: Settling 83 elements at seafloor
14:09:44 DEBUG opendrift.models.oceandrift:582: 452 elements penetrated seafloor, lifting up
14:09:44 DEBUG opendrift.models.oceandrift:600: 74 elements reached seafloor, set to bottom
14:09:44 DEBUG opendrift.models.basemodel:836: Lifting 74 elements to seafloor.
14:09:44 DEBUG opendrift.models.sedimentdrift:112: Settling 74 elements at seafloor
14:09:44 DEBUG opendrift.models.oceandrift:582: 446 elements penetrated seafloor, lifting up
14:09:44 DEBUG opendrift.models.oceandrift:600: 62 elements reached seafloor, set to bottom
14:09:44 DEBUG opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
14:09:44 DEBUG opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
14:09:44 DEBUG opendrift.models.oceandrift:582: 393 elements penetrated seafloor, lifting up
14:09:44 DEBUG opendrift.models.oceandrift:600: 80 elements reached seafloor, set to bottom
14:09:44 DEBUG opendrift.models.basemodel:836: Lifting 80 elements to seafloor.
14:09:44 DEBUG opendrift.models.sedimentdrift:112: Settling 80 elements at seafloor
14:09:44 DEBUG opendrift.models.oceandrift:582: 399 elements penetrated seafloor, lifting up
14:09:44 DEBUG opendrift.models.oceandrift:600: 77 elements reached seafloor, set to bottom
14:09:44 DEBUG opendrift.models.basemodel:836: Lifting 77 elements to seafloor.
14:09:44 DEBUG opendrift.models.sedimentdrift:112: Settling 77 elements at seafloor
14:09:44 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:44 DEBUG opendrift.models.basemodel:2945: 7014 active elements (0 deactivated)
14:09:44 DEBUG opendrift.models.basemodel:1658: to be seeded: 2986, already seeded 7014
14:09:44 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:09:44 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:44 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:44 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:44 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:44 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:44 DEBUG opendrift.models.basemodel:1253: Data needed for 7048 elements
14:09:44 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:44 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 23:00:00 (before)
2023-09-03 00:00:00 (after)
14:09:44 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 23:00:00) in space (linearNDFast)
14:09:44 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:44 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:44 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:44 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:44 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:44 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:44 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3682 (max)
14:09:44 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:44 DEBUG opendrift.models.basemodel:1527: 7048 active elements
14:09:44 DEBUG opendrift.models.basemodel:1538: 59.09355999819533 <- latitude -> 59.18950336233946
14:09:44 DEBUG opendrift.models.basemodel:1543: 10.877717466361469 <- longitude -> 11.04619339160436
14:09:44 DEBUG opendrift.models.basemodel:1548: -15.242815017700195 <- z -> 0.0
14:09:44 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:44 DEBUG opendrift.models.basemodel:836: Lifting 624 elements to seafloor.
14:09:44 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:44 INFO opendrift.models.basemodel:2882: 2023-09-02 23:46:21.121579 - step 203 of 216 - 7048 active elements (0 deactivated)
14:09:44 DEBUG opendrift.models.basemodel:2888: 2952 elements scheduled.
14:09:44 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:44 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:44 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:44 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:44 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:44 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:44 DEBUG opendrift.models.basemodel:1253: Data needed for 7048 elements
14:09:44 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:44 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:44 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:44 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:44 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:44 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:44 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:44 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:44 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:44 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:44 DEBUG opendrift.models.basemodel:1253: Data needed for 7048 elements
14:09:44 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:44 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 23:00:00 (before)
2023-09-03 00:00:00 (after)
14:09:45 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:45 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:45 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:45 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:45 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:45 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:45 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x27x6) for time after (2023-09-03 00:00:00)
14:09:45 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 23:00:00) in space (linearNDFast)
14:09:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:45 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-03 00:00:00) in space (linearNDFast)
14:09:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4499 elements, expanding data 1
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 123 elements, expanding data 2
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4499 elements, expanding data 1
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 123 elements, expanding data 2
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4610 elements, expanding data 1
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 452 elements, expanding data 2
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 109 elements, expanding data 3
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4610 elements, expanding data 1
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 452 elements, expanding data 2
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 109 elements, expanding data 3
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4610 elements, expanding data 1
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 452 elements, expanding data 2
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 109 elements, expanding data 3
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4610 elements, expanding data 1
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 452 elements, expanding data 2
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 109 elements, expanding data 3
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4610 elements, expanding data 1
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 452 elements, expanding data 2
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 109 elements, expanding data 3
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4610 elements, expanding data 1
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 452 elements, expanding data 2
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 109 elements, expanding data 3
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6036 elements, expanding data 1
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2545 elements, expanding data 2
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6036 elements, expanding data 1
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2545 elements, expanding data 2
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6036 elements, expanding data 1
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2545 elements, expanding data 2
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6036 elements, expanding data 1
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2545 elements, expanding data 2
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6036 elements, expanding data 1
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2545 elements, expanding data 2
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6036 elements, expanding data 1
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2545 elements, expanding data 2
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4499 elements, expanding data 1
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 123 elements, expanding data 2
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4499 elements, expanding data 1
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 123 elements, expanding data 2
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4499 elements, expanding data 1
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 123 elements, expanding data 2
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4499 elements, expanding data 1
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 123 elements, expanding data 2
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4499 elements, expanding data 1
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 123 elements, expanding data 2
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4499 elements, expanding data 1
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 123 elements, expanding data 2
14:09:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:45 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 23:00:00, weight 0.23) and
after (2023-09-03 00:00:00, weight 0.77) in time
14:09:45 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.122293112987066 and -58.95381716969006 degrees.
14:09:45 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.122293112987066 and -58.95381716969006 degrees.
14:09:45 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:45 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:45 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:45 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:45 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:45 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:45 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.877505 (min) 1.27552 (max)
14:09:45 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.07597 (min) 0.789832 (max)
14:09:45 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000239336 (min) 0.000757263 (max)
14:09:45 DEBUG opendrift.models.basemodel:1524: x_wind: -9.69657 (min) 6.27368 (max)
14:09:45 DEBUG opendrift.models.basemodel:1524: y_wind: -9.33724 (min) 9.46975 (max)
14:09:45 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:45 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:45 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:45 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:45 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:45 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:45 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:45 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3682 (max)
14:09:45 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:45 DEBUG opendrift.models.basemodel:1527: 7048 active elements
14:09:45 DEBUG opendrift.models.basemodel:1538: 59.09355999819533 <- latitude -> 59.18950336233946
14:09:45 DEBUG opendrift.models.basemodel:1543: 10.877717466361469 <- longitude -> 11.04619339160436
14:09:45 DEBUG opendrift.models.basemodel:1548: -15.242815017700195 <- z -> 0.0
14:09:45 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:45 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:45 DEBUG opendrift.models.physics_methods:1050: min: 0.027020, mean: 2.491432, max: 8.350552
14:09:45 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.027020, mean: 2.491432, max: 8.350552
14:09:45 DEBUG opendrift.models.basemodel:813: 992 elements hit coastline, moving back to water
14:09:45 DEBUG opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
14:09:45 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:45 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:45 DEBUG opendrift.models.physics_methods:828: Advecting 37 of 7048 elements above 0.100m with wind-sheared ocean current (0.009203 m/s - 0.162362 m/s)
14:09:45 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:45 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:45 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08628856960876465
14:09:45 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:45 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:45 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:45 DEBUG opendrift.models.oceandrift:582: 740 elements penetrated seafloor, lifting up
14:09:45 DEBUG opendrift.models.oceandrift:600: 111 elements reached seafloor, set to bottom
14:09:45 DEBUG opendrift.models.basemodel:836: Lifting 111 elements to seafloor.
14:09:45 DEBUG opendrift.models.sedimentdrift:112: Settling 111 elements at seafloor
14:09:45 DEBUG opendrift.models.oceandrift:582: 604 elements penetrated seafloor, lifting up
14:09:45 DEBUG opendrift.models.oceandrift:600: 107 elements reached seafloor, set to bottom
14:09:45 DEBUG opendrift.models.basemodel:836: Lifting 107 elements to seafloor.
14:09:45 DEBUG opendrift.models.sedimentdrift:112: Settling 107 elements at seafloor
14:09:45 DEBUG opendrift.models.oceandrift:582: 520 elements penetrated seafloor, lifting up
14:09:45 DEBUG opendrift.models.oceandrift:600: 113 elements reached seafloor, set to bottom
14:09:45 DEBUG opendrift.models.basemodel:836: Lifting 113 elements to seafloor.
14:09:45 DEBUG opendrift.models.sedimentdrift:112: Settling 113 elements at seafloor
14:09:45 DEBUG opendrift.models.oceandrift:582: 497 elements penetrated seafloor, lifting up
14:09:45 DEBUG opendrift.models.oceandrift:600: 90 elements reached seafloor, set to bottom
14:09:45 DEBUG opendrift.models.basemodel:836: Lifting 90 elements to seafloor.
14:09:45 DEBUG opendrift.models.sedimentdrift:112: Settling 90 elements at seafloor
14:09:45 DEBUG opendrift.models.oceandrift:582: 464 elements penetrated seafloor, lifting up
14:09:45 DEBUG opendrift.models.oceandrift:600: 100 elements reached seafloor, set to bottom
14:09:45 DEBUG opendrift.models.basemodel:836: Lifting 100 elements to seafloor.
14:09:45 DEBUG opendrift.models.sedimentdrift:112: Settling 100 elements at seafloor
14:09:45 DEBUG opendrift.models.oceandrift:582: 448 elements penetrated seafloor, lifting up
14:09:45 DEBUG opendrift.models.oceandrift:600: 89 elements reached seafloor, set to bottom
14:09:45 DEBUG opendrift.models.basemodel:836: Lifting 89 elements to seafloor.
14:09:45 DEBUG opendrift.models.sedimentdrift:112: Settling 89 elements at seafloor
14:09:45 DEBUG opendrift.models.oceandrift:582: 449 elements penetrated seafloor, lifting up
14:09:45 DEBUG opendrift.models.oceandrift:600: 74 elements reached seafloor, set to bottom
14:09:45 DEBUG opendrift.models.basemodel:836: Lifting 74 elements to seafloor.
14:09:45 DEBUG opendrift.models.sedimentdrift:112: Settling 74 elements at seafloor
14:09:45 DEBUG opendrift.models.oceandrift:582: 429 elements penetrated seafloor, lifting up
14:09:45 DEBUG opendrift.models.oceandrift:600: 67 elements reached seafloor, set to bottom
14:09:45 DEBUG opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
14:09:45 DEBUG opendrift.models.sedimentdrift:112: Settling 67 elements at seafloor
14:09:45 DEBUG opendrift.models.oceandrift:582: 388 elements penetrated seafloor, lifting up
14:09:45 DEBUG opendrift.models.oceandrift:600: 80 elements reached seafloor, set to bottom
14:09:45 DEBUG opendrift.models.basemodel:836: Lifting 80 elements to seafloor.
14:09:45 DEBUG opendrift.models.sedimentdrift:112: Settling 80 elements at seafloor
14:09:45 DEBUG opendrift.models.oceandrift:582: 386 elements penetrated seafloor, lifting up
14:09:45 DEBUG opendrift.models.oceandrift:600: 64 elements reached seafloor, set to bottom
14:09:45 DEBUG opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
14:09:45 DEBUG opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
14:09:45 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:45 DEBUG opendrift.models.basemodel:2945: 7048 active elements (0 deactivated)
14:09:45 DEBUG opendrift.models.basemodel:1658: to be seeded: 2952, already seeded 7048
14:09:45 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:09:45 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:45 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:45 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:45 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:45 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:45 DEBUG opendrift.models.basemodel:1253: Data needed for 7083 elements
14:09:45 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:45 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 23:00:00 (before)
2023-09-03 00:00:00 (after)
14:09:45 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 23:00:00) in space (linearNDFast)
14:09:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:45 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:45 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:45 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:45 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:45 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:45 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3244 (max)
14:09:45 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:45 DEBUG opendrift.models.basemodel:1527: 7083 active elements
14:09:45 DEBUG opendrift.models.basemodel:1538: 59.094120374445836 <- latitude -> 59.189943672581094
14:09:45 DEBUG opendrift.models.basemodel:1543: 10.877175970677104 <- longitude -> 11.04843084069534
14:09:45 DEBUG opendrift.models.basemodel:1548: -15.242815017700195 <- z -> 0.0
14:09:45 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:45 DEBUG opendrift.models.basemodel:836: Lifting 615 elements to seafloor.
14:09:45 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:45 INFO opendrift.models.basemodel:2882: 2023-09-02 23:56:21.121579 - step 204 of 216 - 7083 active elements (0 deactivated)
14:09:45 DEBUG opendrift.models.basemodel:2888: 2917 elements scheduled.
14:09:45 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:45 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:45 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:45 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:45 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:45 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:45 DEBUG opendrift.models.basemodel:1253: Data needed for 7083 elements
14:09:45 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:45 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:45 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:45 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:45 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:45 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:45 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:45 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:45 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:45 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:45 DEBUG opendrift.models.basemodel:1253: Data needed for 7083 elements
14:09:45 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:45 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-02 23:00:00 (before)
2023-09-03 00:00:00 (after)
14:09:46 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:46 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:46 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:46 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:46 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:46 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:46 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x27x6) for time after (2023-09-03 00:00:00)
14:09:46 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 23:00:00) in space (linearNDFast)
14:09:46 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:46 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-03 00:00:00) in space (linearNDFast)
14:09:46 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4580 elements, expanding data 1
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 2
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4580 elements, expanding data 1
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 2
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4701 elements, expanding data 1
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 448 elements, expanding data 2
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 3
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4701 elements, expanding data 1
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 448 elements, expanding data 2
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 3
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4701 elements, expanding data 1
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 448 elements, expanding data 2
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 3
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4701 elements, expanding data 1
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 448 elements, expanding data 2
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 3
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4701 elements, expanding data 1
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 448 elements, expanding data 2
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 3
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4701 elements, expanding data 1
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 448 elements, expanding data 2
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 3
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6082 elements, expanding data 1
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2635 elements, expanding data 2
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6082 elements, expanding data 1
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2635 elements, expanding data 2
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6082 elements, expanding data 1
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2635 elements, expanding data 2
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6082 elements, expanding data 1
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2635 elements, expanding data 2
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6082 elements, expanding data 1
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2635 elements, expanding data 2
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6082 elements, expanding data 1
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2635 elements, expanding data 2
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4580 elements, expanding data 1
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 2
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4580 elements, expanding data 1
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 2
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4580 elements, expanding data 1
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 2
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4580 elements, expanding data 1
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 2
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4580 elements, expanding data 1
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 2
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4580 elements, expanding data 1
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 2
14:09:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:46 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 23:00:00, weight 0.06) and
after (2023-09-03 00:00:00, weight 0.94) in time
14:09:46 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.122834608442346 and -58.951579716872544 degrees.
14:09:46 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.122834608442346 and -58.951579716872544 degrees.
14:09:46 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:46 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:46 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:46 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:46 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:46 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:46 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.76316 (min) 1.27941 (max)
14:09:46 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.946102 (min) 0.875027 (max)
14:09:46 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000273523 (min) 0.000621747 (max)
14:09:46 DEBUG opendrift.models.basemodel:1524: x_wind: -8.36478 (min) 5.49723 (max)
14:09:46 DEBUG opendrift.models.basemodel:1524: y_wind: -8.08136 (min) 6.56266 (max)
14:09:46 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:46 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:46 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:46 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:46 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:46 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:46 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:46 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3244 (max)
14:09:46 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:46 DEBUG opendrift.models.basemodel:1527: 7083 active elements
14:09:46 DEBUG opendrift.models.basemodel:1538: 59.094120374445836 <- latitude -> 59.189943672581094
14:09:46 DEBUG opendrift.models.basemodel:1543: 10.877175970677104 <- longitude -> 11.04843084069534
14:09:46 DEBUG opendrift.models.basemodel:1548: -15.242815017700195 <- z -> 0.0
14:09:46 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:46 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:46 DEBUG opendrift.models.physics_methods:1050: min: 0.039015, mean: 2.515961, max: 8.034750
14:09:46 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.039015, mean: 2.515961, max: 8.034750
14:09:46 DEBUG opendrift.models.basemodel:813: 1117 elements hit coastline, moving back to water
14:09:46 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:09:46 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:46 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:46 DEBUG opendrift.models.physics_methods:828: Advecting 38 of 7083 elements above 0.100m with wind-sheared ocean current (0.003483 m/s - 0.129000 m/s)
14:09:46 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:46 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:46 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07988572514064789
14:09:46 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:46 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:46 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:46 DEBUG opendrift.models.oceandrift:582: 745 elements penetrated seafloor, lifting up
14:09:46 DEBUG opendrift.models.oceandrift:600: 115 elements reached seafloor, set to bottom
14:09:46 DEBUG opendrift.models.basemodel:836: Lifting 115 elements to seafloor.
14:09:46 DEBUG opendrift.models.sedimentdrift:112: Settling 115 elements at seafloor
14:09:46 DEBUG opendrift.models.oceandrift:582: 567 elements penetrated seafloor, lifting up
14:09:46 DEBUG opendrift.models.oceandrift:600: 113 elements reached seafloor, set to bottom
14:09:46 DEBUG opendrift.models.basemodel:836: Lifting 113 elements to seafloor.
14:09:46 DEBUG opendrift.models.sedimentdrift:112: Settling 113 elements at seafloor
14:09:46 DEBUG opendrift.models.oceandrift:582: 568 elements penetrated seafloor, lifting up
14:09:46 DEBUG opendrift.models.oceandrift:600: 102 elements reached seafloor, set to bottom
14:09:46 DEBUG opendrift.models.basemodel:836: Lifting 102 elements to seafloor.
14:09:46 DEBUG opendrift.models.sedimentdrift:112: Settling 102 elements at seafloor
14:09:46 DEBUG opendrift.models.oceandrift:582: 499 elements penetrated seafloor, lifting up
14:09:46 DEBUG opendrift.models.oceandrift:600: 81 elements reached seafloor, set to bottom
14:09:46 DEBUG opendrift.models.basemodel:836: Lifting 81 elements to seafloor.
14:09:46 DEBUG opendrift.models.sedimentdrift:112: Settling 81 elements at seafloor
14:09:46 DEBUG opendrift.models.oceandrift:582: 479 elements penetrated seafloor, lifting up
14:09:46 DEBUG opendrift.models.oceandrift:600: 88 elements reached seafloor, set to bottom
14:09:46 DEBUG opendrift.models.basemodel:836: Lifting 88 elements to seafloor.
14:09:46 DEBUG opendrift.models.sedimentdrift:112: Settling 88 elements at seafloor
14:09:46 DEBUG opendrift.models.oceandrift:582: 468 elements penetrated seafloor, lifting up
14:09:46 DEBUG opendrift.models.oceandrift:600: 92 elements reached seafloor, set to bottom
14:09:46 DEBUG opendrift.models.basemodel:836: Lifting 92 elements to seafloor.
14:09:46 DEBUG opendrift.models.sedimentdrift:112: Settling 92 elements at seafloor
14:09:46 DEBUG opendrift.models.oceandrift:582: 455 elements penetrated seafloor, lifting up
14:09:46 DEBUG opendrift.models.oceandrift:600: 87 elements reached seafloor, set to bottom
14:09:46 DEBUG opendrift.models.basemodel:836: Lifting 87 elements to seafloor.
14:09:46 DEBUG opendrift.models.sedimentdrift:112: Settling 87 elements at seafloor
14:09:46 DEBUG opendrift.models.oceandrift:582: 449 elements penetrated seafloor, lifting up
14:09:46 DEBUG opendrift.models.oceandrift:600: 84 elements reached seafloor, set to bottom
14:09:46 DEBUG opendrift.models.basemodel:836: Lifting 84 elements to seafloor.
14:09:46 DEBUG opendrift.models.sedimentdrift:112: Settling 84 elements at seafloor
14:09:46 DEBUG opendrift.models.oceandrift:582: 416 elements penetrated seafloor, lifting up
14:09:46 DEBUG opendrift.models.oceandrift:600: 82 elements reached seafloor, set to bottom
14:09:46 DEBUG opendrift.models.basemodel:836: Lifting 82 elements to seafloor.
14:09:46 DEBUG opendrift.models.sedimentdrift:112: Settling 82 elements at seafloor
14:09:46 DEBUG opendrift.models.oceandrift:582: 404 elements penetrated seafloor, lifting up
14:09:46 DEBUG opendrift.models.oceandrift:600: 79 elements reached seafloor, set to bottom
14:09:46 DEBUG opendrift.models.basemodel:836: Lifting 79 elements to seafloor.
14:09:46 DEBUG opendrift.models.sedimentdrift:112: Settling 79 elements at seafloor
14:09:46 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:46 DEBUG opendrift.models.basemodel:2945: 7083 active elements (0 deactivated)
14:09:46 DEBUG opendrift.models.basemodel:1658: to be seeded: 2917, already seeded 7083
14:09:46 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:09:46 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:46 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:46 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:46 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:46 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:46 DEBUG opendrift.models.basemodel:1253: Data needed for 7118 elements
14:09:46 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:46 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-03 00:00:00 (before)
2023-09-03 01:00:00 (after)
14:09:46 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-03 00:00:00) in space (linearNDFast)
14:09:46 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:46 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:46 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:46 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:46 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:46 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:46 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3464 (max)
14:09:46 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:46 DEBUG opendrift.models.basemodel:1527: 7118 active elements
14:09:46 DEBUG opendrift.models.basemodel:1538: 59.095834445044005 <- latitude -> 59.18957881495942
14:09:46 DEBUG opendrift.models.basemodel:1543: 10.873430003746005 <- longitude -> 11.050739308430181
14:09:46 DEBUG opendrift.models.basemodel:1548: -15.242815017700195 <- z -> 0.0
14:09:46 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:46 DEBUG opendrift.models.basemodel:836: Lifting 652 elements to seafloor.
14:09:46 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:46 INFO opendrift.models.basemodel:2882: 2023-09-03 00:06:21.121579 - step 205 of 216 - 7118 active elements (0 deactivated)
14:09:46 DEBUG opendrift.models.basemodel:2888: 2882 elements scheduled.
14:09:46 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:46 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:46 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:46 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:46 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:46 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:46 DEBUG opendrift.models.basemodel:1253: Data needed for 7118 elements
14:09:46 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:46 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:46 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:46 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:46 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:46 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:46 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:46 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:46 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:46 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:46 DEBUG opendrift.models.basemodel:1253: Data needed for 7118 elements
14:09:46 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:46 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-03 00:00:00 (before)
2023-09-03 01:00:00 (after)
14:09:47 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:47 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:47 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:47 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:47 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:47 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:47 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x27x6) for time after (2023-09-03 01:00:00)
14:09:47 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-03 00:00:00) in space (linearNDFast)
14:09:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:47 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-03 01:00:00) in space (linearNDFast)
14:09:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4606 elements, expanding data 1
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 127 elements, expanding data 2
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4606 elements, expanding data 1
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 127 elements, expanding data 2
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4730 elements, expanding data 1
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 455 elements, expanding data 2
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 115 elements, expanding data 3
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4730 elements, expanding data 1
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 455 elements, expanding data 2
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 115 elements, expanding data 3
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4730 elements, expanding data 1
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 455 elements, expanding data 2
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 115 elements, expanding data 3
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4730 elements, expanding data 1
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 455 elements, expanding data 2
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 115 elements, expanding data 3
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4730 elements, expanding data 1
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 455 elements, expanding data 2
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 115 elements, expanding data 3
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4730 elements, expanding data 1
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 455 elements, expanding data 2
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 115 elements, expanding data 3
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6131 elements, expanding data 1
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2627 elements, expanding data 2
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6131 elements, expanding data 1
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2627 elements, expanding data 2
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6131 elements, expanding data 1
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2627 elements, expanding data 2
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6131 elements, expanding data 1
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2627 elements, expanding data 2
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6131 elements, expanding data 1
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2627 elements, expanding data 2
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6131 elements, expanding data 1
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2627 elements, expanding data 2
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4606 elements, expanding data 1
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 127 elements, expanding data 2
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4606 elements, expanding data 1
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 127 elements, expanding data 2
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4606 elements, expanding data 1
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 127 elements, expanding data 2
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4606 elements, expanding data 1
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 127 elements, expanding data 2
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4606 elements, expanding data 1
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 127 elements, expanding data 2
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4606 elements, expanding data 1
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 127 elements, expanding data 2
14:09:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:47 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-03 00:00:00, weight 0.89) and
after (2023-09-03 01:00:00, weight 0.11) in time
14:09:47 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.12658057368109 and -58.949271249077995 degrees.
14:09:47 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.12658057368109 and -58.949271249077995 degrees.
14:09:47 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:47 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:47 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:47 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:47 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:47 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:47 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.786112 (min) 1.39846 (max)
14:09:47 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.955609 (min) 0.779693 (max)
14:09:47 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000213873 (min) 0.000663225 (max)
14:09:47 DEBUG opendrift.models.basemodel:1524: x_wind: -8.79824 (min) 6.16019 (max)
14:09:47 DEBUG opendrift.models.basemodel:1524: y_wind: -7.53673 (min) 6.64665 (max)
14:09:47 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:47 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:47 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:47 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:47 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:47 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:47 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:47 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3464 (max)
14:09:47 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:47 DEBUG opendrift.models.basemodel:1527: 7118 active elements
14:09:47 DEBUG opendrift.models.basemodel:1538: 59.095834445044005 <- latitude -> 59.18957881495942
14:09:47 DEBUG opendrift.models.basemodel:1543: 10.873430003746005 <- longitude -> 11.050739308430181
14:09:47 DEBUG opendrift.models.basemodel:1548: -15.242815017700195 <- z -> 0.0
14:09:47 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:47 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:47 DEBUG opendrift.models.physics_methods:1050: min: 0.016562, mean: 2.529071, max: 7.573933
14:09:47 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.016562, mean: 2.529071, max: 7.573933
14:09:47 DEBUG opendrift.models.basemodel:813: 1038 elements hit coastline, moving back to water
14:09:47 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:09:47 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:47 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:47 DEBUG opendrift.models.physics_methods:828: Advecting 35 of 7118 elements above 0.100m with wind-sheared ocean current (0.012279 m/s - 0.107733 m/s)
14:09:47 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:47 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:47 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07098559000928878
14:09:47 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:47 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:47 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:47 DEBUG opendrift.models.oceandrift:582: 761 elements penetrated seafloor, lifting up
14:09:47 DEBUG opendrift.models.oceandrift:600: 98 elements reached seafloor, set to bottom
14:09:47 DEBUG opendrift.models.basemodel:836: Lifting 98 elements to seafloor.
14:09:47 DEBUG opendrift.models.sedimentdrift:112: Settling 98 elements at seafloor
14:09:47 DEBUG opendrift.models.oceandrift:582: 589 elements penetrated seafloor, lifting up
14:09:47 DEBUG opendrift.models.oceandrift:600: 110 elements reached seafloor, set to bottom
14:09:47 DEBUG opendrift.models.basemodel:836: Lifting 110 elements to seafloor.
14:09:47 DEBUG opendrift.models.sedimentdrift:112: Settling 110 elements at seafloor
14:09:47 DEBUG opendrift.models.oceandrift:582: 527 elements penetrated seafloor, lifting up
14:09:47 DEBUG opendrift.models.oceandrift:600: 94 elements reached seafloor, set to bottom
14:09:47 DEBUG opendrift.models.basemodel:836: Lifting 94 elements to seafloor.
14:09:47 DEBUG opendrift.models.sedimentdrift:112: Settling 94 elements at seafloor
14:09:47 DEBUG opendrift.models.oceandrift:582: 499 elements penetrated seafloor, lifting up
14:09:47 DEBUG opendrift.models.oceandrift:600: 94 elements reached seafloor, set to bottom
14:09:47 DEBUG opendrift.models.basemodel:836: Lifting 94 elements to seafloor.
14:09:47 DEBUG opendrift.models.sedimentdrift:112: Settling 94 elements at seafloor
14:09:47 DEBUG opendrift.models.oceandrift:582: 517 elements penetrated seafloor, lifting up
14:09:47 DEBUG opendrift.models.oceandrift:600: 91 elements reached seafloor, set to bottom
14:09:47 DEBUG opendrift.models.basemodel:836: Lifting 91 elements to seafloor.
14:09:47 DEBUG opendrift.models.sedimentdrift:112: Settling 91 elements at seafloor
14:09:47 DEBUG opendrift.models.oceandrift:582: 476 elements penetrated seafloor, lifting up
14:09:47 DEBUG opendrift.models.oceandrift:600: 80 elements reached seafloor, set to bottom
14:09:47 DEBUG opendrift.models.basemodel:836: Lifting 80 elements to seafloor.
14:09:47 DEBUG opendrift.models.sedimentdrift:112: Settling 80 elements at seafloor
14:09:47 DEBUG opendrift.models.oceandrift:582: 480 elements penetrated seafloor, lifting up
14:09:47 DEBUG opendrift.models.oceandrift:600: 89 elements reached seafloor, set to bottom
14:09:47 DEBUG opendrift.models.basemodel:836: Lifting 89 elements to seafloor.
14:09:47 DEBUG opendrift.models.sedimentdrift:112: Settling 89 elements at seafloor
14:09:47 DEBUG opendrift.models.oceandrift:582: 444 elements penetrated seafloor, lifting up
14:09:47 DEBUG opendrift.models.oceandrift:600: 67 elements reached seafloor, set to bottom
14:09:47 DEBUG opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
14:09:47 DEBUG opendrift.models.sedimentdrift:112: Settling 67 elements at seafloor
14:09:47 DEBUG opendrift.models.oceandrift:582: 437 elements penetrated seafloor, lifting up
14:09:47 DEBUG opendrift.models.oceandrift:600: 97 elements reached seafloor, set to bottom
14:09:47 DEBUG opendrift.models.basemodel:836: Lifting 97 elements to seafloor.
14:09:47 DEBUG opendrift.models.sedimentdrift:112: Settling 97 elements at seafloor
14:09:47 DEBUG opendrift.models.oceandrift:582: 397 elements penetrated seafloor, lifting up
14:09:47 DEBUG opendrift.models.oceandrift:600: 74 elements reached seafloor, set to bottom
14:09:47 DEBUG opendrift.models.basemodel:836: Lifting 74 elements to seafloor.
14:09:47 DEBUG opendrift.models.sedimentdrift:112: Settling 74 elements at seafloor
14:09:47 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:47 DEBUG opendrift.models.basemodel:2945: 7118 active elements (0 deactivated)
14:09:47 DEBUG opendrift.models.basemodel:1658: to be seeded: 2882, already seeded 7118
14:09:47 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:09:47 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:47 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:47 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:47 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:47 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:47 DEBUG opendrift.models.basemodel:1253: Data needed for 7153 elements
14:09:47 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:47 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-03 00:00:00 (before)
2023-09-03 01:00:00 (after)
14:09:47 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-03 00:00:00) in space (linearNDFast)
14:09:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:47 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:47 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:47 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:47 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:47 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:47 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3967 (max)
14:09:47 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:47 DEBUG opendrift.models.basemodel:1527: 7153 active elements
14:09:47 DEBUG opendrift.models.basemodel:1538: 59.09509911458417 <- latitude -> 59.18989065021185
14:09:47 DEBUG opendrift.models.basemodel:1543: 10.880611963818723 <- longitude -> 11.05197588654849
14:09:47 DEBUG opendrift.models.basemodel:1548: -15.232815017700196 <- z -> 0.0
14:09:47 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:47 DEBUG opendrift.models.basemodel:836: Lifting 636 elements to seafloor.
14:09:47 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:47 INFO opendrift.models.basemodel:2882: 2023-09-03 00:16:21.121579 - step 206 of 216 - 7153 active elements (0 deactivated)
14:09:47 DEBUG opendrift.models.basemodel:2888: 2847 elements scheduled.
14:09:47 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:47 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:47 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:47 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:47 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:47 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:47 DEBUG opendrift.models.basemodel:1253: Data needed for 7153 elements
14:09:47 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:47 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:47 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:47 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:47 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:47 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:47 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:47 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:47 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:47 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:47 DEBUG opendrift.models.basemodel:1253: Data needed for 7153 elements
14:09:47 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:47 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-03 00:00:00 (before)
2023-09-03 01:00:00 (after)
14:09:48 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:48 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:48 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:48 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:48 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:48 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:48 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x27x6) for time after (2023-09-03 01:00:00)
14:09:48 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-03 00:00:00) in space (linearNDFast)
14:09:48 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:48 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-03 01:00:00) in space (linearNDFast)
14:09:48 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4667 elements, expanding data 1
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 2
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4667 elements, expanding data 1
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 2
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4787 elements, expanding data 1
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 459 elements, expanding data 2
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 116 elements, expanding data 3
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4787 elements, expanding data 1
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 459 elements, expanding data 2
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 116 elements, expanding data 3
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4787 elements, expanding data 1
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 459 elements, expanding data 2
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 116 elements, expanding data 3
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4787 elements, expanding data 1
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 459 elements, expanding data 2
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 116 elements, expanding data 3
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4787 elements, expanding data 1
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 459 elements, expanding data 2
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 116 elements, expanding data 3
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4787 elements, expanding data 1
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 459 elements, expanding data 2
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 116 elements, expanding data 3
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6143 elements, expanding data 1
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2693 elements, expanding data 2
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6143 elements, expanding data 1
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2693 elements, expanding data 2
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6143 elements, expanding data 1
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2693 elements, expanding data 2
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6143 elements, expanding data 1
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2693 elements, expanding data 2
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6143 elements, expanding data 1
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2693 elements, expanding data 2
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6143 elements, expanding data 1
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2693 elements, expanding data 2
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4667 elements, expanding data 1
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 2
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4667 elements, expanding data 1
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 2
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4667 elements, expanding data 1
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 2
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4667 elements, expanding data 1
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 2
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4667 elements, expanding data 1
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 2
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4667 elements, expanding data 1
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 2
14:09:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:48 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-03 00:00:00, weight 0.73) and
after (2023-09-03 01:00:00, weight 0.27) in time
14:09:48 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.11939861735617 and -58.948034672878855 degrees.
14:09:48 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.11939861735617 and -58.948034672878855 degrees.
14:09:48 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:48 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:48 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:48 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:48 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:48 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:48 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.757026 (min) 1.14648 (max)
14:09:48 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.10763 (min) 0.797197 (max)
14:09:48 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000126243 (min) 0.000697213 (max)
14:09:48 DEBUG opendrift.models.basemodel:1524: x_wind: -9.70446 (min) 5.41337 (max)
14:09:48 DEBUG opendrift.models.basemodel:1524: y_wind: -9.00266 (min) 6.17292 (max)
14:09:48 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:48 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:48 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:48 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:48 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:48 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:48 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:48 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3967 (max)
14:09:48 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:48 DEBUG opendrift.models.basemodel:1527: 7153 active elements
14:09:48 DEBUG opendrift.models.basemodel:1538: 59.09509911458417 <- latitude -> 59.18989065021185
14:09:48 DEBUG opendrift.models.basemodel:1543: 10.880611963818723 <- longitude -> 11.05197588654849
14:09:48 DEBUG opendrift.models.basemodel:1548: -15.232815017700196 <- z -> 0.0
14:09:48 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:48 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:48 DEBUG opendrift.models.physics_methods:1050: min: 0.046383, mean: 2.495255, max: 8.779310
14:09:48 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.046383, mean: 2.495255, max: 8.779310
14:09:48 DEBUG opendrift.models.basemodel:813: 1098 elements hit coastline, moving back to water
14:09:48 DEBUG opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
14:09:48 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:48 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:48 DEBUG opendrift.models.physics_methods:828: Advecting 38 of 7153 elements above 0.100m with wind-sheared ocean current (0.002420 m/s - 0.180772 m/s)
14:09:48 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:48 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:48 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09537657556016921
14:09:48 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:48 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:48 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:48 DEBUG opendrift.models.oceandrift:582: 831 elements penetrated seafloor, lifting up
14:09:48 DEBUG opendrift.models.oceandrift:600: 124 elements reached seafloor, set to bottom
14:09:48 DEBUG opendrift.models.basemodel:836: Lifting 124 elements to seafloor.
14:09:48 DEBUG opendrift.models.sedimentdrift:112: Settling 124 elements at seafloor
14:09:48 DEBUG opendrift.models.oceandrift:582: 597 elements penetrated seafloor, lifting up
14:09:48 DEBUG opendrift.models.oceandrift:600: 100 elements reached seafloor, set to bottom
14:09:48 DEBUG opendrift.models.basemodel:836: Lifting 100 elements to seafloor.
14:09:48 DEBUG opendrift.models.sedimentdrift:112: Settling 100 elements at seafloor
14:09:48 DEBUG opendrift.models.oceandrift:582: 591 elements penetrated seafloor, lifting up
14:09:48 DEBUG opendrift.models.oceandrift:600: 86 elements reached seafloor, set to bottom
14:09:48 DEBUG opendrift.models.basemodel:836: Lifting 86 elements to seafloor.
14:09:48 DEBUG opendrift.models.sedimentdrift:112: Settling 86 elements at seafloor
14:09:48 DEBUG opendrift.models.oceandrift:582: 529 elements penetrated seafloor, lifting up
14:09:48 DEBUG opendrift.models.oceandrift:600: 87 elements reached seafloor, set to bottom
14:09:48 DEBUG opendrift.models.basemodel:836: Lifting 87 elements to seafloor.
14:09:48 DEBUG opendrift.models.sedimentdrift:112: Settling 87 elements at seafloor
14:09:48 DEBUG opendrift.models.oceandrift:582: 511 elements penetrated seafloor, lifting up
14:09:48 DEBUG opendrift.models.oceandrift:600: 93 elements reached seafloor, set to bottom
14:09:48 DEBUG opendrift.models.basemodel:836: Lifting 93 elements to seafloor.
14:09:48 DEBUG opendrift.models.sedimentdrift:112: Settling 93 elements at seafloor
14:09:48 DEBUG opendrift.models.oceandrift:582: 435 elements penetrated seafloor, lifting up
14:09:48 DEBUG opendrift.models.oceandrift:600: 95 elements reached seafloor, set to bottom
14:09:48 DEBUG opendrift.models.basemodel:836: Lifting 95 elements to seafloor.
14:09:48 DEBUG opendrift.models.sedimentdrift:112: Settling 95 elements at seafloor
14:09:48 DEBUG opendrift.models.oceandrift:582: 479 elements penetrated seafloor, lifting up
14:09:48 DEBUG opendrift.models.oceandrift:600: 90 elements reached seafloor, set to bottom
14:09:48 DEBUG opendrift.models.basemodel:836: Lifting 90 elements to seafloor.
14:09:48 DEBUG opendrift.models.sedimentdrift:112: Settling 90 elements at seafloor
14:09:48 DEBUG opendrift.models.oceandrift:582: 439 elements penetrated seafloor, lifting up
14:09:48 DEBUG opendrift.models.oceandrift:600: 90 elements reached seafloor, set to bottom
14:09:48 DEBUG opendrift.models.basemodel:836: Lifting 90 elements to seafloor.
14:09:48 DEBUG opendrift.models.sedimentdrift:112: Settling 90 elements at seafloor
14:09:48 DEBUG opendrift.models.oceandrift:582: 450 elements penetrated seafloor, lifting up
14:09:48 DEBUG opendrift.models.oceandrift:600: 64 elements reached seafloor, set to bottom
14:09:48 DEBUG opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
14:09:48 DEBUG opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
14:09:48 DEBUG opendrift.models.oceandrift:582: 440 elements penetrated seafloor, lifting up
14:09:48 DEBUG opendrift.models.oceandrift:600: 80 elements reached seafloor, set to bottom
14:09:48 DEBUG opendrift.models.basemodel:836: Lifting 80 elements to seafloor.
14:09:48 DEBUG opendrift.models.sedimentdrift:112: Settling 80 elements at seafloor
14:09:48 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:48 DEBUG opendrift.models.basemodel:2945: 7153 active elements (0 deactivated)
14:09:48 DEBUG opendrift.models.basemodel:1658: to be seeded: 2847, already seeded 7153
14:09:48 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:09:48 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:48 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:48 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:48 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:48 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:48 DEBUG opendrift.models.basemodel:1253: Data needed for 7187 elements
14:09:48 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:48 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-03 00:00:00 (before)
2023-09-03 01:00:00 (after)
14:09:48 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-03 00:00:00) in space (linearNDFast)
14:09:48 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:48 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:48 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:48 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:48 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:48 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:48 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5677 (max)
14:09:48 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:48 DEBUG opendrift.models.basemodel:1527: 7187 active elements
14:09:48 DEBUG opendrift.models.basemodel:1538: 59.09565917121226 <- latitude -> 59.19085999401516
14:09:48 DEBUG opendrift.models.basemodel:1543: 10.879455775696295 <- longitude -> 11.052452059386074
14:09:48 DEBUG opendrift.models.basemodel:1548: -15.255912055969238 <- z -> 0.0
14:09:48 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:48 DEBUG opendrift.models.basemodel:836: Lifting 662 elements to seafloor.
14:09:48 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:48 INFO opendrift.models.basemodel:2882: 2023-09-03 00:26:21.121579 - step 207 of 216 - 7187 active elements (0 deactivated)
14:09:48 DEBUG opendrift.models.basemodel:2888: 2813 elements scheduled.
14:09:48 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:48 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:48 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:48 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:48 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:48 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:48 DEBUG opendrift.models.basemodel:1253: Data needed for 7187 elements
14:09:48 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:48 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:48 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:48 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:48 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:48 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:48 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:48 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:48 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:48 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:48 DEBUG opendrift.models.basemodel:1253: Data needed for 7187 elements
14:09:48 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:48 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-03 00:00:00 (before)
2023-09-03 01:00:00 (after)
14:09:49 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:49 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:49 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:49 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:49 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:49 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:49 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x27x6) for time after (2023-09-03 01:00:00)
14:09:49 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-03 00:00:00) in space (linearNDFast)
14:09:49 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:49 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-03 01:00:00) in space (linearNDFast)
14:09:49 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4681 elements, expanding data 1
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 125 elements, expanding data 2
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4681 elements, expanding data 1
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 125 elements, expanding data 2
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4791 elements, expanding data 1
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 454 elements, expanding data 2
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 3
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4791 elements, expanding data 1
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 454 elements, expanding data 2
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 3
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4791 elements, expanding data 1
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 454 elements, expanding data 2
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 3
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4791 elements, expanding data 1
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 454 elements, expanding data 2
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 3
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4791 elements, expanding data 1
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 454 elements, expanding data 2
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 3
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4791 elements, expanding data 1
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 454 elements, expanding data 2
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 3
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6193 elements, expanding data 1
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2721 elements, expanding data 2
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6193 elements, expanding data 1
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2721 elements, expanding data 2
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6193 elements, expanding data 1
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2721 elements, expanding data 2
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6193 elements, expanding data 1
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2721 elements, expanding data 2
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6193 elements, expanding data 1
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2721 elements, expanding data 2
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6193 elements, expanding data 1
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2721 elements, expanding data 2
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4681 elements, expanding data 1
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 125 elements, expanding data 2
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4681 elements, expanding data 1
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 125 elements, expanding data 2
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4681 elements, expanding data 1
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 125 elements, expanding data 2
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4681 elements, expanding data 1
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 125 elements, expanding data 2
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4681 elements, expanding data 1
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 125 elements, expanding data 2
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4681 elements, expanding data 1
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 125 elements, expanding data 2
14:09:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:49 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-03 00:00:00, weight 0.56) and
after (2023-09-03 01:00:00, weight 0.44) in time
14:09:49 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.120554793951165 and -58.9475584953088 degrees.
14:09:49 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.120554793951165 and -58.9475584953088 degrees.
14:09:49 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:49 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:49 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:49 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:49 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:49 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:49 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.791167 (min) 1.27998 (max)
14:09:49 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.23565 (min) 0.814689 (max)
14:09:49 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000127558 (min) 0.00078143 (max)
14:09:49 DEBUG opendrift.models.basemodel:1524: x_wind: -8.55599 (min) 7.02022 (max)
14:09:49 DEBUG opendrift.models.basemodel:1524: y_wind: -9.82658 (min) 6.26052 (max)
14:09:49 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:49 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:49 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:49 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:49 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:49 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:49 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:49 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5677 (max)
14:09:49 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:49 DEBUG opendrift.models.basemodel:1527: 7187 active elements
14:09:49 DEBUG opendrift.models.basemodel:1538: 59.09565917121226 <- latitude -> 59.19085999401516
14:09:49 DEBUG opendrift.models.basemodel:1543: 10.879455775696295 <- longitude -> 11.052452059386074
14:09:49 DEBUG opendrift.models.basemodel:1548: -15.128747940063477 <- z -> 0.0
14:09:49 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:49 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:49 DEBUG opendrift.models.physics_methods:1050: min: 0.052877, mean: 2.530509, max: 8.433661
14:09:49 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.052877, mean: 2.530509, max: 8.433661
14:09:49 DEBUG opendrift.models.basemodel:813: 1114 elements hit coastline, moving back to water
14:09:49 DEBUG opendrift.models.basemodel:836: Lifting 263 elements to seafloor.
14:09:49 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:49 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:49 DEBUG opendrift.models.physics_methods:828: Advecting 38 of 7187 elements above 0.100m with wind-sheared ocean current (0.001613 m/s - 0.117890 m/s)
14:09:49 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:49 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:49 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08801462945755005
14:09:49 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:49 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:49 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:49 DEBUG opendrift.models.oceandrift:582: 776 elements penetrated seafloor, lifting up
14:09:49 DEBUG opendrift.models.oceandrift:600: 125 elements reached seafloor, set to bottom
14:09:49 DEBUG opendrift.models.basemodel:836: Lifting 125 elements to seafloor.
14:09:49 DEBUG opendrift.models.sedimentdrift:112: Settling 125 elements at seafloor
14:09:49 DEBUG opendrift.models.oceandrift:582: 575 elements penetrated seafloor, lifting up
14:09:49 DEBUG opendrift.models.oceandrift:600: 125 elements reached seafloor, set to bottom
14:09:49 DEBUG opendrift.models.basemodel:836: Lifting 125 elements to seafloor.
14:09:49 DEBUG opendrift.models.sedimentdrift:112: Settling 125 elements at seafloor
14:09:49 DEBUG opendrift.models.oceandrift:582: 590 elements penetrated seafloor, lifting up
14:09:49 DEBUG opendrift.models.oceandrift:600: 82 elements reached seafloor, set to bottom
14:09:49 DEBUG opendrift.models.basemodel:836: Lifting 82 elements to seafloor.
14:09:49 DEBUG opendrift.models.sedimentdrift:112: Settling 82 elements at seafloor
14:09:49 DEBUG opendrift.models.oceandrift:582: 501 elements penetrated seafloor, lifting up
14:09:49 DEBUG opendrift.models.oceandrift:600: 109 elements reached seafloor, set to bottom
14:09:49 DEBUG opendrift.models.basemodel:836: Lifting 109 elements to seafloor.
14:09:49 DEBUG opendrift.models.sedimentdrift:112: Settling 109 elements at seafloor
14:09:49 DEBUG opendrift.models.oceandrift:582: 473 elements penetrated seafloor, lifting up
14:09:49 DEBUG opendrift.models.oceandrift:600: 74 elements reached seafloor, set to bottom
14:09:49 DEBUG opendrift.models.basemodel:836: Lifting 74 elements to seafloor.
14:09:49 DEBUG opendrift.models.sedimentdrift:112: Settling 74 elements at seafloor
14:09:49 DEBUG opendrift.models.oceandrift:582: 485 elements penetrated seafloor, lifting up
14:09:49 DEBUG opendrift.models.oceandrift:600: 101 elements reached seafloor, set to bottom
14:09:49 DEBUG opendrift.models.basemodel:836: Lifting 101 elements to seafloor.
14:09:49 DEBUG opendrift.models.sedimentdrift:112: Settling 101 elements at seafloor
14:09:49 DEBUG opendrift.models.oceandrift:582: 490 elements penetrated seafloor, lifting up
14:09:49 DEBUG opendrift.models.oceandrift:600: 75 elements reached seafloor, set to bottom
14:09:49 DEBUG opendrift.models.basemodel:836: Lifting 75 elements to seafloor.
14:09:49 DEBUG opendrift.models.sedimentdrift:112: Settling 75 elements at seafloor
14:09:49 DEBUG opendrift.models.oceandrift:582: 440 elements penetrated seafloor, lifting up
14:09:49 DEBUG opendrift.models.oceandrift:600: 86 elements reached seafloor, set to bottom
14:09:49 DEBUG opendrift.models.basemodel:836: Lifting 86 elements to seafloor.
14:09:49 DEBUG opendrift.models.sedimentdrift:112: Settling 86 elements at seafloor
14:09:49 DEBUG opendrift.models.oceandrift:582: 428 elements penetrated seafloor, lifting up
14:09:49 DEBUG opendrift.models.oceandrift:600: 98 elements reached seafloor, set to bottom
14:09:49 DEBUG opendrift.models.basemodel:836: Lifting 98 elements to seafloor.
14:09:49 DEBUG opendrift.models.sedimentdrift:112: Settling 98 elements at seafloor
14:09:49 DEBUG opendrift.models.oceandrift:582: 410 elements penetrated seafloor, lifting up
14:09:49 DEBUG opendrift.models.oceandrift:600: 75 elements reached seafloor, set to bottom
14:09:49 DEBUG opendrift.models.basemodel:836: Lifting 75 elements to seafloor.
14:09:49 DEBUG opendrift.models.sedimentdrift:112: Settling 75 elements at seafloor
14:09:49 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:49 DEBUG opendrift.models.basemodel:2945: 7187 active elements (0 deactivated)
14:09:49 DEBUG opendrift.models.basemodel:1658: to be seeded: 2813, already seeded 7187
14:09:49 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:09:49 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:49 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:49 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:49 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:49 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:49 DEBUG opendrift.models.basemodel:1253: Data needed for 7222 elements
14:09:49 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:49 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-03 00:00:00 (before)
2023-09-03 01:00:00 (after)
14:09:49 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-03 00:00:00) in space (linearNDFast)
14:09:49 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:49 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:49 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:49 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:49 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:49 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:49 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3492 (max)
14:09:49 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:49 DEBUG opendrift.models.basemodel:1527: 7222 active elements
14:09:49 DEBUG opendrift.models.basemodel:1538: 59.09722678345923 <- latitude -> 59.189400046022726
14:09:49 DEBUG opendrift.models.basemodel:1543: 10.881598159363408 <- longitude -> 11.049153501611835
14:09:49 DEBUG opendrift.models.basemodel:1548: -15.217193697916482 <- z -> 0.0
14:09:49 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:49 DEBUG opendrift.models.basemodel:836: Lifting 681 elements to seafloor.
14:09:49 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:49 INFO opendrift.models.basemodel:2882: 2023-09-03 00:36:21.121579 - step 208 of 216 - 7222 active elements (0 deactivated)
14:09:49 DEBUG opendrift.models.basemodel:2888: 2778 elements scheduled.
14:09:49 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:49 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:49 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:49 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:49 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:49 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:49 DEBUG opendrift.models.basemodel:1253: Data needed for 7222 elements
14:09:49 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:49 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:49 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:49 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:49 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:49 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:49 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:49 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:49 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:49 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:49 DEBUG opendrift.models.basemodel:1253: Data needed for 7222 elements
14:09:49 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:49 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-03 00:00:00 (before)
2023-09-03 01:00:00 (after)
14:09:50 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:50 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:50 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:50 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:50 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:50 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:50 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x27x6) for time after (2023-09-03 01:00:00)
14:09:50 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-03 00:00:00) in space (linearNDFast)
14:09:50 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:50 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-03 01:00:00) in space (linearNDFast)
14:09:50 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4738 elements, expanding data 1
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 124 elements, expanding data 2
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4738 elements, expanding data 1
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 124 elements, expanding data 2
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4849 elements, expanding data 1
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 464 elements, expanding data 2
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 108 elements, expanding data 3
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4849 elements, expanding data 1
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 464 elements, expanding data 2
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 108 elements, expanding data 3
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4849 elements, expanding data 1
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 464 elements, expanding data 2
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 108 elements, expanding data 3
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4849 elements, expanding data 1
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 464 elements, expanding data 2
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 108 elements, expanding data 3
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4849 elements, expanding data 1
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 464 elements, expanding data 2
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 108 elements, expanding data 3
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4849 elements, expanding data 1
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 464 elements, expanding data 2
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 108 elements, expanding data 3
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6232 elements, expanding data 1
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2753 elements, expanding data 2
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6232 elements, expanding data 1
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2753 elements, expanding data 2
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6232 elements, expanding data 1
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2753 elements, expanding data 2
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6232 elements, expanding data 1
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2753 elements, expanding data 2
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6232 elements, expanding data 1
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2753 elements, expanding data 2
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6232 elements, expanding data 1
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2753 elements, expanding data 2
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4738 elements, expanding data 1
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 124 elements, expanding data 2
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4738 elements, expanding data 1
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 124 elements, expanding data 2
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4738 elements, expanding data 1
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 124 elements, expanding data 2
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4738 elements, expanding data 1
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 124 elements, expanding data 2
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4738 elements, expanding data 1
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 124 elements, expanding data 2
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4738 elements, expanding data 1
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 124 elements, expanding data 2
14:09:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:50 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-03 00:00:00, weight 0.39) and
after (2023-09-03 01:00:00, weight 0.61) in time
14:09:50 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.118412414406265 and -58.95085705861331 degrees.
14:09:50 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.118412414406265 and -58.95085705861331 degrees.
14:09:50 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:50 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:50 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:50 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:50 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:50 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:50 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -1.0194 (min) 1.05959 (max)
14:09:50 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.979968 (min) 0.726161 (max)
14:09:50 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000136732 (min) 0.000704924 (max)
14:09:50 DEBUG opendrift.models.basemodel:1524: x_wind: -9.61132 (min) 5.70803 (max)
14:09:50 DEBUG opendrift.models.basemodel:1524: y_wind: -9.97102 (min) 7.11007 (max)
14:09:50 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:50 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:50 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:50 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:50 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:50 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:50 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:50 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3492 (max)
14:09:50 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:50 DEBUG opendrift.models.basemodel:1527: 7222 active elements
14:09:50 DEBUG opendrift.models.basemodel:1538: 59.09722678345923 <- latitude -> 59.189400046022726
14:09:50 DEBUG opendrift.models.basemodel:1543: 10.881598159363408 <- longitude -> 11.049153501611835
14:09:50 DEBUG opendrift.models.basemodel:1548: -15.217193697916482 <- z -> 0.0
14:09:50 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:50 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:50 DEBUG opendrift.models.physics_methods:1050: min: 0.048810, mean: 2.528922, max: 9.244543
14:09:50 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.048810, mean: 2.528922, max: 9.244543
14:09:50 DEBUG opendrift.models.basemodel:813: 1115 elements hit coastline, moving back to water
14:09:50 DEBUG opendrift.models.basemodel:836: Lifting 263 elements to seafloor.
14:09:50 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:50 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:50 DEBUG opendrift.models.physics_methods:828: Advecting 36 of 7222 elements above 0.100m with wind-sheared ocean current (0.004996 m/s - 0.108923 m/s)
14:09:50 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:50 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:50 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.1057523467350769
14:09:50 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:50 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:50 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:50 DEBUG opendrift.models.oceandrift:582: 778 elements penetrated seafloor, lifting up
14:09:50 DEBUG opendrift.models.oceandrift:600: 125 elements reached seafloor, set to bottom
14:09:50 DEBUG opendrift.models.basemodel:836: Lifting 125 elements to seafloor.
14:09:50 DEBUG opendrift.models.sedimentdrift:112: Settling 125 elements at seafloor
14:09:50 DEBUG opendrift.models.oceandrift:582: 604 elements penetrated seafloor, lifting up
14:09:50 DEBUG opendrift.models.oceandrift:600: 121 elements reached seafloor, set to bottom
14:09:50 DEBUG opendrift.models.basemodel:836: Lifting 121 elements to seafloor.
14:09:50 DEBUG opendrift.models.sedimentdrift:112: Settling 121 elements at seafloor
14:09:50 DEBUG opendrift.models.oceandrift:582: 568 elements penetrated seafloor, lifting up
14:09:50 DEBUG opendrift.models.oceandrift:600: 123 elements reached seafloor, set to bottom
14:09:50 DEBUG opendrift.models.basemodel:836: Lifting 123 elements to seafloor.
14:09:50 DEBUG opendrift.models.sedimentdrift:112: Settling 123 elements at seafloor
14:09:50 DEBUG opendrift.models.oceandrift:582: 524 elements penetrated seafloor, lifting up
14:09:50 DEBUG opendrift.models.oceandrift:600: 99 elements reached seafloor, set to bottom
14:09:50 DEBUG opendrift.models.basemodel:836: Lifting 99 elements to seafloor.
14:09:50 DEBUG opendrift.models.sedimentdrift:112: Settling 99 elements at seafloor
14:09:50 DEBUG opendrift.models.oceandrift:582: 487 elements penetrated seafloor, lifting up
14:09:50 DEBUG opendrift.models.oceandrift:600: 100 elements reached seafloor, set to bottom
14:09:50 DEBUG opendrift.models.basemodel:836: Lifting 100 elements to seafloor.
14:09:50 DEBUG opendrift.models.sedimentdrift:112: Settling 100 elements at seafloor
14:09:50 DEBUG opendrift.models.oceandrift:582: 482 elements penetrated seafloor, lifting up
14:09:50 DEBUG opendrift.models.oceandrift:600: 83 elements reached seafloor, set to bottom
14:09:50 DEBUG opendrift.models.basemodel:836: Lifting 83 elements to seafloor.
14:09:50 DEBUG opendrift.models.sedimentdrift:112: Settling 83 elements at seafloor
14:09:50 DEBUG opendrift.models.oceandrift:582: 463 elements penetrated seafloor, lifting up
14:09:50 DEBUG opendrift.models.oceandrift:600: 88 elements reached seafloor, set to bottom
14:09:50 DEBUG opendrift.models.basemodel:836: Lifting 88 elements to seafloor.
14:09:50 DEBUG opendrift.models.sedimentdrift:112: Settling 88 elements at seafloor
14:09:50 DEBUG opendrift.models.oceandrift:582: 473 elements penetrated seafloor, lifting up
14:09:50 DEBUG opendrift.models.oceandrift:600: 74 elements reached seafloor, set to bottom
14:09:50 DEBUG opendrift.models.basemodel:836: Lifting 74 elements to seafloor.
14:09:50 DEBUG opendrift.models.sedimentdrift:112: Settling 74 elements at seafloor
14:09:50 DEBUG opendrift.models.oceandrift:582: 429 elements penetrated seafloor, lifting up
14:09:50 DEBUG opendrift.models.oceandrift:600: 75 elements reached seafloor, set to bottom
14:09:50 DEBUG opendrift.models.basemodel:836: Lifting 75 elements to seafloor.
14:09:50 DEBUG opendrift.models.sedimentdrift:112: Settling 75 elements at seafloor
14:09:50 DEBUG opendrift.models.oceandrift:582: 433 elements penetrated seafloor, lifting up
14:09:50 DEBUG opendrift.models.oceandrift:600: 84 elements reached seafloor, set to bottom
14:09:50 DEBUG opendrift.models.basemodel:836: Lifting 84 elements to seafloor.
14:09:50 DEBUG opendrift.models.sedimentdrift:112: Settling 84 elements at seafloor
14:09:50 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:50 DEBUG opendrift.models.basemodel:2945: 7222 active elements (0 deactivated)
14:09:50 DEBUG opendrift.models.basemodel:1658: to be seeded: 2778, already seeded 7222
14:09:50 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:09:50 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:50 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:50 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:50 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:50 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:50 DEBUG opendrift.models.basemodel:1253: Data needed for 7257 elements
14:09:50 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:50 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-03 00:00:00 (before)
2023-09-03 01:00:00 (after)
14:09:50 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-03 00:00:00) in space (linearNDFast)
14:09:50 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:50 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:50 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:50 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:50 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:50 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:50 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3703 (max)
14:09:50 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:50 DEBUG opendrift.models.basemodel:1527: 7257 active elements
14:09:50 DEBUG opendrift.models.basemodel:1538: 59.09709814371407 <- latitude -> 59.19049323303645
14:09:50 DEBUG opendrift.models.basemodel:1543: 10.879241979285855 <- longitude -> 11.046684757124817
14:09:50 DEBUG opendrift.models.basemodel:1548: -15.048147430419922 <- z -> 0.0
14:09:50 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:50 DEBUG opendrift.models.basemodel:836: Lifting 713 elements to seafloor.
14:09:50 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:50 INFO opendrift.models.basemodel:2882: 2023-09-03 00:46:21.121579 - step 209 of 216 - 7257 active elements (0 deactivated)
14:09:50 DEBUG opendrift.models.basemodel:2888: 2743 elements scheduled.
14:09:50 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:50 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:50 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:50 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:50 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:50 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:50 DEBUG opendrift.models.basemodel:1253: Data needed for 7257 elements
14:09:50 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:50 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:50 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:50 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:50 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:50 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:50 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:50 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:50 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:50 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:50 DEBUG opendrift.models.basemodel:1253: Data needed for 7257 elements
14:09:50 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:50 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-03 00:00:00 (before)
2023-09-03 01:00:00 (after)
14:09:51 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:51 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:51 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:51 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:51 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:51 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:51 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x27x6) for time after (2023-09-03 01:00:00)
14:09:51 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-03 00:00:00) in space (linearNDFast)
14:09:51 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:51 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-03 01:00:00) in space (linearNDFast)
14:09:51 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4803 elements, expanding data 1
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 127 elements, expanding data 2
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4803 elements, expanding data 1
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 127 elements, expanding data 2
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4916 elements, expanding data 1
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 465 elements, expanding data 2
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 111 elements, expanding data 3
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4916 elements, expanding data 1
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 465 elements, expanding data 2
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 111 elements, expanding data 3
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4916 elements, expanding data 1
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 465 elements, expanding data 2
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 111 elements, expanding data 3
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4916 elements, expanding data 1
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 465 elements, expanding data 2
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 111 elements, expanding data 3
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4916 elements, expanding data 1
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 465 elements, expanding data 2
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 111 elements, expanding data 3
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4916 elements, expanding data 1
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 465 elements, expanding data 2
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 111 elements, expanding data 3
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6260 elements, expanding data 1
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2812 elements, expanding data 2
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6260 elements, expanding data 1
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2812 elements, expanding data 2
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6260 elements, expanding data 1
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2812 elements, expanding data 2
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6260 elements, expanding data 1
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2812 elements, expanding data 2
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6260 elements, expanding data 1
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2812 elements, expanding data 2
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6260 elements, expanding data 1
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2812 elements, expanding data 2
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4803 elements, expanding data 1
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 127 elements, expanding data 2
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4803 elements, expanding data 1
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 127 elements, expanding data 2
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4803 elements, expanding data 1
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 127 elements, expanding data 2
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4803 elements, expanding data 1
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 127 elements, expanding data 2
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4803 elements, expanding data 1
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 127 elements, expanding data 2
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4803 elements, expanding data 1
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 127 elements, expanding data 2
14:09:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:09:51 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-03 00:00:00, weight 0.23) and
after (2023-09-03 01:00:00, weight 0.77) in time
14:09:51 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.120768597124496 and -58.95332579610378 degrees.
14:09:51 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.120768597124496 and -58.95332579610378 degrees.
14:09:51 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:51 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:51 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:51 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:51 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:51 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:51 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.864777 (min) 1.32946 (max)
14:09:51 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.99127 (min) 0.762994 (max)
14:09:51 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -7.60266e-05 (min) 0.000740895 (max)
14:09:51 DEBUG opendrift.models.basemodel:1524: x_wind: -8.29237 (min) 5.88182 (max)
14:09:51 DEBUG opendrift.models.basemodel:1524: y_wind: -7.37383 (min) 6.91786 (max)
14:09:51 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:51 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:51 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:51 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:51 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:51 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:51 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:51 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3703 (max)
14:09:51 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:51 DEBUG opendrift.models.basemodel:1527: 7257 active elements
14:09:51 DEBUG opendrift.models.basemodel:1538: 59.09709814371407 <- latitude -> 59.19049323303645
14:09:51 DEBUG opendrift.models.basemodel:1543: 10.879241979285855 <- longitude -> 11.046684757124817
14:09:51 DEBUG opendrift.models.basemodel:1548: -15.048147430419922 <- z -> 0.0
14:09:51 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:51 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:51 DEBUG opendrift.models.physics_methods:1050: min: 0.039798, mean: 2.528301, max: 7.317299
14:09:51 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.039798, mean: 2.528301, max: 7.317299
14:09:51 DEBUG opendrift.models.basemodel:813: 1096 elements hit coastline, moving back to water
14:09:51 DEBUG opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
14:09:51 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:51 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:51 DEBUG opendrift.models.physics_methods:828: Advecting 39 of 7257 elements above 0.100m with wind-sheared ocean current (0.006327 m/s - 0.121160 m/s)
14:09:51 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:51 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:51 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.06625682797296524
14:09:51 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:51 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:51 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:51 DEBUG opendrift.models.oceandrift:582: 816 elements penetrated seafloor, lifting up
14:09:51 DEBUG opendrift.models.oceandrift:600: 123 elements reached seafloor, set to bottom
14:09:51 DEBUG opendrift.models.basemodel:836: Lifting 123 elements to seafloor.
14:09:51 DEBUG opendrift.models.sedimentdrift:112: Settling 123 elements at seafloor
14:09:51 DEBUG opendrift.models.oceandrift:582: 668 elements penetrated seafloor, lifting up
14:09:51 DEBUG opendrift.models.oceandrift:600: 114 elements reached seafloor, set to bottom
14:09:51 DEBUG opendrift.models.basemodel:836: Lifting 114 elements to seafloor.
14:09:51 DEBUG opendrift.models.sedimentdrift:112: Settling 114 elements at seafloor
14:09:51 DEBUG opendrift.models.oceandrift:582: 599 elements penetrated seafloor, lifting up
14:09:51 DEBUG opendrift.models.oceandrift:600: 108 elements reached seafloor, set to bottom
14:09:51 DEBUG opendrift.models.basemodel:836: Lifting 108 elements to seafloor.
14:09:51 DEBUG opendrift.models.sedimentdrift:112: Settling 108 elements at seafloor
14:09:51 DEBUG opendrift.models.oceandrift:582: 510 elements penetrated seafloor, lifting up
14:09:51 DEBUG opendrift.models.oceandrift:600: 107 elements reached seafloor, set to bottom
14:09:51 DEBUG opendrift.models.basemodel:836: Lifting 107 elements to seafloor.
14:09:51 DEBUG opendrift.models.sedimentdrift:112: Settling 107 elements at seafloor
14:09:51 DEBUG opendrift.models.oceandrift:582: 493 elements penetrated seafloor, lifting up
14:09:51 DEBUG opendrift.models.oceandrift:600: 76 elements reached seafloor, set to bottom
14:09:51 DEBUG opendrift.models.basemodel:836: Lifting 76 elements to seafloor.
14:09:51 DEBUG opendrift.models.sedimentdrift:112: Settling 76 elements at seafloor
14:09:51 DEBUG opendrift.models.oceandrift:582: 503 elements penetrated seafloor, lifting up
14:09:51 DEBUG opendrift.models.oceandrift:600: 91 elements reached seafloor, set to bottom
14:09:51 DEBUG opendrift.models.basemodel:836: Lifting 91 elements to seafloor.
14:09:51 DEBUG opendrift.models.sedimentdrift:112: Settling 91 elements at seafloor
14:09:51 DEBUG opendrift.models.oceandrift:582: 471 elements penetrated seafloor, lifting up
14:09:51 DEBUG opendrift.models.oceandrift:600: 84 elements reached seafloor, set to bottom
14:09:51 DEBUG opendrift.models.basemodel:836: Lifting 84 elements to seafloor.
14:09:51 DEBUG opendrift.models.sedimentdrift:112: Settling 84 elements at seafloor
14:09:51 DEBUG opendrift.models.oceandrift:582: 461 elements penetrated seafloor, lifting up
14:09:51 DEBUG opendrift.models.oceandrift:600: 84 elements reached seafloor, set to bottom
14:09:51 DEBUG opendrift.models.basemodel:836: Lifting 84 elements to seafloor.
14:09:51 DEBUG opendrift.models.sedimentdrift:112: Settling 84 elements at seafloor
14:09:51 DEBUG opendrift.models.oceandrift:582: 477 elements penetrated seafloor, lifting up
14:09:51 DEBUG opendrift.models.oceandrift:600: 82 elements reached seafloor, set to bottom
14:09:51 DEBUG opendrift.models.basemodel:836: Lifting 82 elements to seafloor.
14:09:51 DEBUG opendrift.models.sedimentdrift:112: Settling 82 elements at seafloor
14:09:51 DEBUG opendrift.models.oceandrift:582: 447 elements penetrated seafloor, lifting up
14:09:51 DEBUG opendrift.models.oceandrift:600: 77 elements reached seafloor, set to bottom
14:09:51 DEBUG opendrift.models.basemodel:836: Lifting 77 elements to seafloor.
14:09:51 DEBUG opendrift.models.sedimentdrift:112: Settling 77 elements at seafloor
14:09:51 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:51 DEBUG opendrift.models.basemodel:2945: 7257 active elements (0 deactivated)
14:09:51 DEBUG opendrift.models.basemodel:1658: to be seeded: 2743, already seeded 7257
14:09:51 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:09:51 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:51 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:51 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:51 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:51 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:51 DEBUG opendrift.models.basemodel:1253: Data needed for 7291 elements
14:09:51 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:51 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-03 00:00:00 (before)
2023-09-03 01:00:00 (after)
14:09:51 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-03 00:00:00) in space (linearNDFast)
14:09:51 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:51 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:51 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:51 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:51 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:51 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:51 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3847 (max)
14:09:51 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:51 DEBUG opendrift.models.basemodel:1527: 7291 active elements
14:09:51 DEBUG opendrift.models.basemodel:1538: 59.09639142983325 <- latitude -> 59.189806338010015
14:09:51 DEBUG opendrift.models.basemodel:1543: 10.880137602804838 <- longitude -> 11.043061708065675
14:09:51 DEBUG opendrift.models.basemodel:1548: -15.370330810546875 <- z -> 0.0
14:09:51 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:51 DEBUG opendrift.models.basemodel:836: Lifting 718 elements to seafloor.
14:09:51 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:51 INFO opendrift.models.basemodel:2882: 2023-09-03 00:56:21.121579 - step 210 of 216 - 7291 active elements (0 deactivated)
14:09:51 DEBUG opendrift.models.basemodel:2888: 2709 elements scheduled.
14:09:51 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:51 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:51 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:51 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:51 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:51 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:51 DEBUG opendrift.models.basemodel:1253: Data needed for 7291 elements
14:09:51 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:51 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:51 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:51 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:51 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:51 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:51 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:51 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:51 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:51 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:51 DEBUG opendrift.models.basemodel:1253: Data needed for 7291 elements
14:09:51 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:51 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-03 00:00:00 (before)
2023-09-03 01:00:00 (after)
14:09:52 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:52 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:52 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:52 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:52 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:52 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:52 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x27x6) for time after (2023-09-03 01:00:00)
14:09:52 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-03 00:00:00) in space (linearNDFast)
14:09:52 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:52 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-03 01:00:00) in space (linearNDFast)
14:09:52 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4853 elements, expanding data 1
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 2
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4853 elements, expanding data 1
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 2
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4970 elements, expanding data 1
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 466 elements, expanding data 2
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 120 elements, expanding data 3
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4970 elements, expanding data 1
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 466 elements, expanding data 2
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 120 elements, expanding data 3
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4970 elements, expanding data 1
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 466 elements, expanding data 2
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 120 elements, expanding data 3
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4970 elements, expanding data 1
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 466 elements, expanding data 2
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 120 elements, expanding data 3
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4970 elements, expanding data 1
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 466 elements, expanding data 2
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 120 elements, expanding data 3
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4970 elements, expanding data 1
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 466 elements, expanding data 2
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 120 elements, expanding data 3
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6281 elements, expanding data 1
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2850 elements, expanding data 2
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6281 elements, expanding data 1
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2850 elements, expanding data 2
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6281 elements, expanding data 1
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2850 elements, expanding data 2
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6281 elements, expanding data 1
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2850 elements, expanding data 2
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6281 elements, expanding data 1
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2850 elements, expanding data 2
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6281 elements, expanding data 1
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2850 elements, expanding data 2
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4853 elements, expanding data 1
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 2
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4853 elements, expanding data 1
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 2
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4853 elements, expanding data 1
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 2
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4853 elements, expanding data 1
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 2
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4853 elements, expanding data 1
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 2
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4853 elements, expanding data 1
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 2
14:09:52 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-03 00:00:00, weight 0.06) and
after (2023-09-03 01:00:00, weight 0.94) in time
14:09:52 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.11987297558028 and -58.95694885467941 degrees.
14:09:52 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.11987297558028 and -58.95694885467941 degrees.
14:09:52 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:52 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:52 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:52 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:52 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:52 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:52 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.790038 (min) 1.30629 (max)
14:09:52 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.16325 (min) 0.75462 (max)
14:09:52 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000181211 (min) 0.000652119 (max)
14:09:52 DEBUG opendrift.models.basemodel:1524: x_wind: -9.17433 (min) 6.35675 (max)
14:09:52 DEBUG opendrift.models.basemodel:1524: y_wind: -9.14615 (min) 6.04738 (max)
14:09:52 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:52 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:52 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:52 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:52 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:52 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:52 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:52 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3847 (max)
14:09:52 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:52 DEBUG opendrift.models.basemodel:1527: 7291 active elements
14:09:52 DEBUG opendrift.models.basemodel:1538: 59.09639142983325 <- latitude -> 59.189806338010015
14:09:52 DEBUG opendrift.models.basemodel:1543: 10.880137602804838 <- longitude -> 11.043061708065675
14:09:52 DEBUG opendrift.models.basemodel:1548: -15.36611557006836 <- z -> 0.0
14:09:52 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:52 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:52 DEBUG opendrift.models.physics_methods:1050: min: 0.021204, mean: 2.558720, max: 8.271576
14:09:52 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.021204, mean: 2.558720, max: 8.271576
14:09:52 DEBUG opendrift.models.basemodel:813: 1181 elements hit coastline, moving back to water
14:09:52 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:09:52 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:52 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:52 DEBUG opendrift.models.physics_methods:828: Advecting 38 of 7291 elements above 0.100m with wind-sheared ocean current (0.001733 m/s - 0.140273 m/s)
14:09:52 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:52 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:52 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08466421353395462
14:09:52 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:52 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:52 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:52 DEBUG opendrift.models.oceandrift:582: 870 elements penetrated seafloor, lifting up
14:09:52 DEBUG opendrift.models.oceandrift:600: 115 elements reached seafloor, set to bottom
14:09:52 DEBUG opendrift.models.basemodel:836: Lifting 115 elements to seafloor.
14:09:52 DEBUG opendrift.models.sedimentdrift:112: Settling 115 elements at seafloor
14:09:52 DEBUG opendrift.models.oceandrift:582: 667 elements penetrated seafloor, lifting up
14:09:52 DEBUG opendrift.models.oceandrift:600: 125 elements reached seafloor, set to bottom
14:09:52 DEBUG opendrift.models.basemodel:836: Lifting 125 elements to seafloor.
14:09:52 DEBUG opendrift.models.sedimentdrift:112: Settling 125 elements at seafloor
14:09:52 DEBUG opendrift.models.oceandrift:582: 572 elements penetrated seafloor, lifting up
14:09:52 DEBUG opendrift.models.oceandrift:600: 103 elements reached seafloor, set to bottom
14:09:52 DEBUG opendrift.models.basemodel:836: Lifting 103 elements to seafloor.
14:09:52 DEBUG opendrift.models.sedimentdrift:112: Settling 103 elements at seafloor
14:09:52 DEBUG opendrift.models.oceandrift:582: 541 elements penetrated seafloor, lifting up
14:09:52 DEBUG opendrift.models.oceandrift:600: 92 elements reached seafloor, set to bottom
14:09:52 DEBUG opendrift.models.basemodel:836: Lifting 92 elements to seafloor.
14:09:52 DEBUG opendrift.models.sedimentdrift:112: Settling 92 elements at seafloor
14:09:52 DEBUG opendrift.models.oceandrift:582: 537 elements penetrated seafloor, lifting up
14:09:52 DEBUG opendrift.models.oceandrift:600: 105 elements reached seafloor, set to bottom
14:09:52 DEBUG opendrift.models.basemodel:836: Lifting 105 elements to seafloor.
14:09:52 DEBUG opendrift.models.sedimentdrift:112: Settling 105 elements at seafloor
14:09:52 DEBUG opendrift.models.oceandrift:582: 478 elements penetrated seafloor, lifting up
14:09:52 DEBUG opendrift.models.oceandrift:600: 89 elements reached seafloor, set to bottom
14:09:52 DEBUG opendrift.models.basemodel:836: Lifting 89 elements to seafloor.
14:09:52 DEBUG opendrift.models.sedimentdrift:112: Settling 89 elements at seafloor
14:09:52 DEBUG opendrift.models.oceandrift:582: 464 elements penetrated seafloor, lifting up
14:09:52 DEBUG opendrift.models.oceandrift:600: 95 elements reached seafloor, set to bottom
14:09:52 DEBUG opendrift.models.basemodel:836: Lifting 95 elements to seafloor.
14:09:52 DEBUG opendrift.models.sedimentdrift:112: Settling 95 elements at seafloor
14:09:52 DEBUG opendrift.models.oceandrift:582: 458 elements penetrated seafloor, lifting up
14:09:52 DEBUG opendrift.models.oceandrift:600: 82 elements reached seafloor, set to bottom
14:09:52 DEBUG opendrift.models.basemodel:836: Lifting 82 elements to seafloor.
14:09:52 DEBUG opendrift.models.sedimentdrift:112: Settling 82 elements at seafloor
14:09:52 DEBUG opendrift.models.oceandrift:582: 474 elements penetrated seafloor, lifting up
14:09:52 DEBUG opendrift.models.oceandrift:600: 74 elements reached seafloor, set to bottom
14:09:52 DEBUG opendrift.models.basemodel:836: Lifting 74 elements to seafloor.
14:09:52 DEBUG opendrift.models.sedimentdrift:112: Settling 74 elements at seafloor
14:09:52 DEBUG opendrift.models.oceandrift:582: 431 elements penetrated seafloor, lifting up
14:09:52 DEBUG opendrift.models.oceandrift:600: 79 elements reached seafloor, set to bottom
14:09:52 DEBUG opendrift.models.basemodel:836: Lifting 79 elements to seafloor.
14:09:52 DEBUG opendrift.models.sedimentdrift:112: Settling 79 elements at seafloor
14:09:52 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:52 DEBUG opendrift.models.basemodel:2945: 7291 active elements (0 deactivated)
14:09:52 DEBUG opendrift.models.basemodel:1658: to be seeded: 2709, already seeded 7291
14:09:52 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:09:52 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:52 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:52 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:52 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:52 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:52 DEBUG opendrift.models.basemodel:1253: Data needed for 7326 elements
14:09:52 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:52 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-03 01:00:00 (before)
2023-09-03 02:00:00 (after)
14:09:52 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-03 01:00:00) in space (linearNDFast)
14:09:52 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
14:09:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
14:09:52 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:52 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:52 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:52 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:52 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:52 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3852 (max)
14:09:52 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:52 DEBUG opendrift.models.basemodel:1527: 7326 active elements
14:09:52 DEBUG opendrift.models.basemodel:1538: 59.09675980203191 <- latitude -> 59.18963361461337
14:09:52 DEBUG opendrift.models.basemodel:1543: 10.879602754040388 <- longitude -> 11.045100596342426
14:09:52 DEBUG opendrift.models.basemodel:1548: -15.35611557006836 <- z -> 0.0
14:09:52 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:52 DEBUG opendrift.models.basemodel:836: Lifting 720 elements to seafloor.
14:09:52 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:52 INFO opendrift.models.basemodel:2882: 2023-09-03 01:06:21.121579 - step 211 of 216 - 7326 active elements (0 deactivated)
14:09:52 DEBUG opendrift.models.basemodel:2888: 2674 elements scheduled.
14:09:52 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:52 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:52 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:52 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:52 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:52 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:52 DEBUG opendrift.models.basemodel:1253: Data needed for 7326 elements
14:09:52 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:52 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:52 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:52 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:52 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:52 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:52 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:52 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:52 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:52 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:52 DEBUG opendrift.models.basemodel:1253: Data needed for 7326 elements
14:09:52 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:52 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-03 01:00:00 (before)
2023-09-03 02:00:00 (after)
14:09:53 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:53 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:53 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:53 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:53 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:53 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:53 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x27x6) for time after (2023-09-03 02:00:00)
14:09:53 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-03 01:00:00) in space (linearNDFast)
14:09:53 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:53 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-03 02:00:00) in space (linearNDFast)
14:09:53 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4916 elements, expanding data 1
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 140 elements, expanding data 2
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4916 elements, expanding data 1
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 140 elements, expanding data 2
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5034 elements, expanding data 1
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 474 elements, expanding data 2
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 119 elements, expanding data 3
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5034 elements, expanding data 1
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 474 elements, expanding data 2
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 119 elements, expanding data 3
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5034 elements, expanding data 1
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 474 elements, expanding data 2
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 119 elements, expanding data 3
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5034 elements, expanding data 1
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 474 elements, expanding data 2
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 119 elements, expanding data 3
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5034 elements, expanding data 1
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 474 elements, expanding data 2
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 119 elements, expanding data 3
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5034 elements, expanding data 1
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 474 elements, expanding data 2
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 119 elements, expanding data 3
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6319 elements, expanding data 1
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2927 elements, expanding data 2
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6319 elements, expanding data 1
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2927 elements, expanding data 2
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6319 elements, expanding data 1
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2927 elements, expanding data 2
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6319 elements, expanding data 1
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2927 elements, expanding data 2
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6319 elements, expanding data 1
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2927 elements, expanding data 2
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6319 elements, expanding data 1
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2927 elements, expanding data 2
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4916 elements, expanding data 1
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 140 elements, expanding data 2
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4916 elements, expanding data 1
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 140 elements, expanding data 2
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4916 elements, expanding data 1
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 140 elements, expanding data 2
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4916 elements, expanding data 1
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 140 elements, expanding data 2
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4916 elements, expanding data 1
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 140 elements, expanding data 2
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4916 elements, expanding data 1
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 140 elements, expanding data 2
14:09:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
14:09:53 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-03 01:00:00, weight 0.89) and
after (2023-09-03 02:00:00, weight 0.11) in time
14:09:53 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.12040783181661 and -58.954909970350016 degrees.
14:09:53 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.12040783181661 and -58.954909970350016 degrees.
14:09:53 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:53 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:53 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:53 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:53 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:53 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:53 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.900798 (min) 1.22065 (max)
14:09:53 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.18289 (min) 0.828234 (max)
14:09:53 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000104946 (min) 0.000706176 (max)
14:09:53 DEBUG opendrift.models.basemodel:1524: x_wind: -8.72313 (min) 6.37993 (max)
14:09:53 DEBUG opendrift.models.basemodel:1524: y_wind: -9.49972 (min) 6.52199 (max)
14:09:53 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:53 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:53 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:53 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:53 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:53 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:53 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:53 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3852 (max)
14:09:53 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:53 DEBUG opendrift.models.basemodel:1527: 7326 active elements
14:09:53 DEBUG opendrift.models.basemodel:1538: 59.09675980203191 <- latitude -> 59.18963361461337
14:09:53 DEBUG opendrift.models.basemodel:1543: 10.879602754040388 <- longitude -> 11.045100596342426
14:09:53 DEBUG opendrift.models.basemodel:1548: -15.35611557006836 <- z -> 0.0
14:09:53 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:53 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:53 DEBUG opendrift.models.physics_methods:1050: min: 0.047454, mean: 2.511210, max: 8.117233
14:09:53 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.047454, mean: 2.511210, max: 8.117233
14:09:53 DEBUG opendrift.models.basemodel:813: 1205 elements hit coastline, moving back to water
14:09:53 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:09:53 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:53 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:53 DEBUG opendrift.models.physics_methods:828: Advecting 38 of 7326 elements above 0.100m with wind-sheared ocean current (0.001310 m/s - 0.112885 m/s)
14:09:53 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:53 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:53 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08153426024826049
14:09:53 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:53 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:53 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:53 DEBUG opendrift.models.oceandrift:582: 785 elements penetrated seafloor, lifting up
14:09:53 DEBUG opendrift.models.oceandrift:600: 110 elements reached seafloor, set to bottom
14:09:53 DEBUG opendrift.models.basemodel:836: Lifting 110 elements to seafloor.
14:09:53 DEBUG opendrift.models.sedimentdrift:112: Settling 110 elements at seafloor
14:09:53 DEBUG opendrift.models.oceandrift:582: 600 elements penetrated seafloor, lifting up
14:09:53 DEBUG opendrift.models.oceandrift:600: 124 elements reached seafloor, set to bottom
14:09:53 DEBUG opendrift.models.basemodel:836: Lifting 124 elements to seafloor.
14:09:53 DEBUG opendrift.models.sedimentdrift:112: Settling 124 elements at seafloor
14:09:53 DEBUG opendrift.models.oceandrift:582: 579 elements penetrated seafloor, lifting up
14:09:53 DEBUG opendrift.models.oceandrift:600: 114 elements reached seafloor, set to bottom
14:09:53 DEBUG opendrift.models.basemodel:836: Lifting 114 elements to seafloor.
14:09:53 DEBUG opendrift.models.sedimentdrift:112: Settling 114 elements at seafloor
14:09:53 DEBUG opendrift.models.oceandrift:582: 514 elements penetrated seafloor, lifting up
14:09:53 DEBUG opendrift.models.oceandrift:600: 95 elements reached seafloor, set to bottom
14:09:53 DEBUG opendrift.models.basemodel:836: Lifting 95 elements to seafloor.
14:09:53 DEBUG opendrift.models.sedimentdrift:112: Settling 95 elements at seafloor
14:09:53 DEBUG opendrift.models.oceandrift:582: 498 elements penetrated seafloor, lifting up
14:09:53 DEBUG opendrift.models.oceandrift:600: 97 elements reached seafloor, set to bottom
14:09:53 DEBUG opendrift.models.basemodel:836: Lifting 97 elements to seafloor.
14:09:53 DEBUG opendrift.models.sedimentdrift:112: Settling 97 elements at seafloor
14:09:53 DEBUG opendrift.models.oceandrift:582: 494 elements penetrated seafloor, lifting up
14:09:53 DEBUG opendrift.models.oceandrift:600: 80 elements reached seafloor, set to bottom
14:09:53 DEBUG opendrift.models.basemodel:836: Lifting 80 elements to seafloor.
14:09:53 DEBUG opendrift.models.sedimentdrift:112: Settling 80 elements at seafloor
14:09:53 DEBUG opendrift.models.oceandrift:582: 471 elements penetrated seafloor, lifting up
14:09:53 DEBUG opendrift.models.oceandrift:600: 84 elements reached seafloor, set to bottom
14:09:53 DEBUG opendrift.models.basemodel:836: Lifting 84 elements to seafloor.
14:09:53 DEBUG opendrift.models.sedimentdrift:112: Settling 84 elements at seafloor
14:09:53 DEBUG opendrift.models.oceandrift:582: 457 elements penetrated seafloor, lifting up
14:09:53 DEBUG opendrift.models.oceandrift:600: 71 elements reached seafloor, set to bottom
14:09:53 DEBUG opendrift.models.basemodel:836: Lifting 71 elements to seafloor.
14:09:53 DEBUG opendrift.models.sedimentdrift:112: Settling 71 elements at seafloor
14:09:53 DEBUG opendrift.models.oceandrift:582: 439 elements penetrated seafloor, lifting up
14:09:53 DEBUG opendrift.models.oceandrift:600: 85 elements reached seafloor, set to bottom
14:09:53 DEBUG opendrift.models.basemodel:836: Lifting 85 elements to seafloor.
14:09:53 DEBUG opendrift.models.sedimentdrift:112: Settling 85 elements at seafloor
14:09:53 DEBUG opendrift.models.oceandrift:582: 442 elements penetrated seafloor, lifting up
14:09:53 DEBUG opendrift.models.oceandrift:600: 78 elements reached seafloor, set to bottom
14:09:53 DEBUG opendrift.models.basemodel:836: Lifting 78 elements to seafloor.
14:09:53 DEBUG opendrift.models.sedimentdrift:112: Settling 78 elements at seafloor
14:09:53 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:53 DEBUG opendrift.models.basemodel:2945: 7326 active elements (0 deactivated)
14:09:53 DEBUG opendrift.models.basemodel:1658: to be seeded: 2674, already seeded 7326
14:09:53 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:09:53 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:53 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:53 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:53 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:53 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:53 DEBUG opendrift.models.basemodel:1253: Data needed for 7361 elements
14:09:53 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:53 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-03 01:00:00 (before)
2023-09-03 02:00:00 (after)
14:09:53 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-03 01:00:00) in space (linearNDFast)
14:09:53 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:53 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:53 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:53 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:53 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:53 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:53 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5567 (max)
14:09:53 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:53 DEBUG opendrift.models.basemodel:1527: 7361 active elements
14:09:53 DEBUG opendrift.models.basemodel:1538: 59.09779483994401 <- latitude -> 59.18996493396072
14:09:53 DEBUG opendrift.models.basemodel:1543: 10.87938470487549 <- longitude -> 11.048069026329328
14:09:53 DEBUG opendrift.models.basemodel:1548: -14.8712739944458 <- z -> 0.0
14:09:53 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:53 DEBUG opendrift.models.basemodel:836: Lifting 665 elements to seafloor.
14:09:53 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:53 INFO opendrift.models.basemodel:2882: 2023-09-03 01:16:21.121579 - step 212 of 216 - 7361 active elements (0 deactivated)
14:09:53 DEBUG opendrift.models.basemodel:2888: 2639 elements scheduled.
14:09:53 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:53 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:53 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:53 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:53 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:53 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:53 DEBUG opendrift.models.basemodel:1253: Data needed for 7361 elements
14:09:53 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:53 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:53 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:53 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:53 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:53 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:53 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:53 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:53 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:53 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:53 DEBUG opendrift.models.basemodel:1253: Data needed for 7361 elements
14:09:53 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:53 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-03 01:00:00 (before)
2023-09-03 02:00:00 (after)
14:09:54 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:54 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:54 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:54 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:54 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:54 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:54 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x28x5) for time after (2023-09-03 02:00:00)
14:09:54 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-03 01:00:00) in space (linearNDFast)
14:09:54 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:54 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-03 02:00:00) in space (linearNDFast)
14:09:54 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4967 elements, expanding data 1
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 146 elements, expanding data 2
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4967 elements, expanding data 1
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 146 elements, expanding data 2
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5074 elements, expanding data 1
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 476 elements, expanding data 2
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 125 elements, expanding data 3
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5074 elements, expanding data 1
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 476 elements, expanding data 2
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 125 elements, expanding data 3
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5074 elements, expanding data 1
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 476 elements, expanding data 2
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 125 elements, expanding data 3
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5074 elements, expanding data 1
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 476 elements, expanding data 2
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 125 elements, expanding data 3
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5074 elements, expanding data 1
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 476 elements, expanding data 2
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 125 elements, expanding data 3
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6369 elements, expanding data 1
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2981 elements, expanding data 2
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6369 elements, expanding data 1
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2981 elements, expanding data 2
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6369 elements, expanding data 1
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2981 elements, expanding data 2
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6369 elements, expanding data 1
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2981 elements, expanding data 2
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6369 elements, expanding data 1
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2981 elements, expanding data 2
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4967 elements, expanding data 1
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 146 elements, expanding data 2
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4967 elements, expanding data 1
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 146 elements, expanding data 2
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4967 elements, expanding data 1
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 146 elements, expanding data 2
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4967 elements, expanding data 1
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 146 elements, expanding data 2
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4967 elements, expanding data 1
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 146 elements, expanding data 2
14:09:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
14:09:54 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-03 01:00:00, weight 0.73) and
after (2023-09-03 02:00:00, weight 0.27) in time
14:09:54 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.12062585861804 and -58.951941543493234 degrees.
14:09:54 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.12062585861804 and -58.951941543493234 degrees.
14:09:54 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:54 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:54 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:54 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:54 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:54 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:54 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.759645 (min) 1.25248 (max)
14:09:54 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.0397 (min) 0.960923 (max)
14:09:54 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000211292 (min) 0.000807861 (max)
14:09:54 DEBUG opendrift.models.basemodel:1524: x_wind: -8.03353 (min) 5.63539 (max)
14:09:54 DEBUG opendrift.models.basemodel:1524: y_wind: -8.53299 (min) 6.70642 (max)
14:09:54 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:54 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:54 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:54 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:54 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:54 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:54 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:54 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5567 (max)
14:09:54 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:54 DEBUG opendrift.models.basemodel:1527: 7361 active elements
14:09:54 DEBUG opendrift.models.basemodel:1538: 59.09779483994401 <- latitude -> 59.18996493396072
14:09:54 DEBUG opendrift.models.basemodel:1543: 10.87938470487549 <- longitude -> 11.048069026329328
14:09:54 DEBUG opendrift.models.basemodel:1548: -14.8712739944458 <- z -> 0.0
14:09:54 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:54 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:54 DEBUG opendrift.models.physics_methods:1050: min: 0.009311, mean: 2.473798, max: 7.678139
14:09:54 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.009311, mean: 2.473798, max: 7.678139
14:09:54 DEBUG opendrift.models.basemodel:813: 1189 elements hit coastline, moving back to water
14:09:54 DEBUG opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
14:09:54 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:54 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:54 DEBUG opendrift.models.physics_methods:828: Advecting 36 of 7361 elements above 0.100m with wind-sheared ocean current (0.004031 m/s - 0.108217 m/s)
14:09:54 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:54 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:54 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07295223520691871
14:09:54 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:54 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:54 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:54 DEBUG opendrift.models.oceandrift:582: 798 elements penetrated seafloor, lifting up
14:09:54 DEBUG opendrift.models.oceandrift:600: 122 elements reached seafloor, set to bottom
14:09:54 DEBUG opendrift.models.basemodel:836: Lifting 122 elements to seafloor.
14:09:54 DEBUG opendrift.models.sedimentdrift:112: Settling 122 elements at seafloor
14:09:54 DEBUG opendrift.models.oceandrift:582: 593 elements penetrated seafloor, lifting up
14:09:54 DEBUG opendrift.models.oceandrift:600: 103 elements reached seafloor, set to bottom
14:09:54 DEBUG opendrift.models.basemodel:836: Lifting 103 elements to seafloor.
14:09:54 DEBUG opendrift.models.sedimentdrift:112: Settling 103 elements at seafloor
14:09:54 DEBUG opendrift.models.oceandrift:582: 558 elements penetrated seafloor, lifting up
14:09:54 DEBUG opendrift.models.oceandrift:600: 97 elements reached seafloor, set to bottom
14:09:54 DEBUG opendrift.models.basemodel:836: Lifting 97 elements to seafloor.
14:09:54 DEBUG opendrift.models.sedimentdrift:112: Settling 97 elements at seafloor
14:09:54 DEBUG opendrift.models.oceandrift:582: 506 elements penetrated seafloor, lifting up
14:09:54 DEBUG opendrift.models.oceandrift:600: 76 elements reached seafloor, set to bottom
14:09:54 DEBUG opendrift.models.basemodel:836: Lifting 76 elements to seafloor.
14:09:54 DEBUG opendrift.models.sedimentdrift:112: Settling 76 elements at seafloor
14:09:54 DEBUG opendrift.models.oceandrift:582: 520 elements penetrated seafloor, lifting up
14:09:54 DEBUG opendrift.models.oceandrift:600: 100 elements reached seafloor, set to bottom
14:09:54 DEBUG opendrift.models.basemodel:836: Lifting 100 elements to seafloor.
14:09:54 DEBUG opendrift.models.sedimentdrift:112: Settling 100 elements at seafloor
14:09:54 DEBUG opendrift.models.oceandrift:582: 503 elements penetrated seafloor, lifting up
14:09:54 DEBUG opendrift.models.oceandrift:600: 91 elements reached seafloor, set to bottom
14:09:54 DEBUG opendrift.models.basemodel:836: Lifting 91 elements to seafloor.
14:09:54 DEBUG opendrift.models.sedimentdrift:112: Settling 91 elements at seafloor
14:09:54 DEBUG opendrift.models.oceandrift:582: 468 elements penetrated seafloor, lifting up
14:09:54 DEBUG opendrift.models.oceandrift:600: 92 elements reached seafloor, set to bottom
14:09:54 DEBUG opendrift.models.basemodel:836: Lifting 92 elements to seafloor.
14:09:54 DEBUG opendrift.models.sedimentdrift:112: Settling 92 elements at seafloor
14:09:54 DEBUG opendrift.models.oceandrift:582: 436 elements penetrated seafloor, lifting up
14:09:54 DEBUG opendrift.models.oceandrift:600: 80 elements reached seafloor, set to bottom
14:09:54 DEBUG opendrift.models.basemodel:836: Lifting 80 elements to seafloor.
14:09:54 DEBUG opendrift.models.sedimentdrift:112: Settling 80 elements at seafloor
14:09:54 DEBUG opendrift.models.oceandrift:582: 431 elements penetrated seafloor, lifting up
14:09:54 DEBUG opendrift.models.oceandrift:600: 69 elements reached seafloor, set to bottom
14:09:54 DEBUG opendrift.models.basemodel:836: Lifting 69 elements to seafloor.
14:09:54 DEBUG opendrift.models.sedimentdrift:112: Settling 69 elements at seafloor
14:09:54 DEBUG opendrift.models.oceandrift:582: 424 elements penetrated seafloor, lifting up
14:09:54 DEBUG opendrift.models.oceandrift:600: 76 elements reached seafloor, set to bottom
14:09:54 DEBUG opendrift.models.basemodel:836: Lifting 76 elements to seafloor.
14:09:54 DEBUG opendrift.models.sedimentdrift:112: Settling 76 elements at seafloor
14:09:54 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:54 DEBUG opendrift.models.basemodel:2945: 7361 active elements (0 deactivated)
14:09:54 DEBUG opendrift.models.basemodel:1658: to be seeded: 2639, already seeded 7361
14:09:54 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:09:54 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:54 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:54 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:54 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:54 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:54 DEBUG opendrift.models.basemodel:1253: Data needed for 7396 elements
14:09:54 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:54 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-03 01:00:00 (before)
2023-09-03 02:00:00 (after)
14:09:54 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-03 01:00:00) in space (linearNDFast)
14:09:54 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:54 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:54 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:54 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:54 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:54 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:54 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4922 (max)
14:09:54 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:54 DEBUG opendrift.models.basemodel:1527: 7396 active elements
14:09:54 DEBUG opendrift.models.basemodel:1538: 59.09594553209885 <- latitude -> 59.19019465883555
14:09:54 DEBUG opendrift.models.basemodel:1543: 10.877023695208836 <- longitude -> 11.043590049805688
14:09:54 DEBUG opendrift.models.basemodel:1548: -14.861273994445801 <- z -> 0.0
14:09:54 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:54 DEBUG opendrift.models.basemodel:836: Lifting 676 elements to seafloor.
14:09:54 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:54 INFO opendrift.models.basemodel:2882: 2023-09-03 01:26:21.121579 - step 213 of 216 - 7396 active elements (0 deactivated)
14:09:54 DEBUG opendrift.models.basemodel:2888: 2604 elements scheduled.
14:09:54 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:54 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:54 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:54 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:54 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:54 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:54 DEBUG opendrift.models.basemodel:1253: Data needed for 7396 elements
14:09:54 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:54 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:54 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:54 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:54 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:54 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:54 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:54 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:54 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:54 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:54 DEBUG opendrift.models.basemodel:1253: Data needed for 7396 elements
14:09:54 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:54 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-03 01:00:00 (before)
2023-09-03 02:00:00 (after)
14:09:55 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:55 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:55 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:55 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:55 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:55 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:55 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x27x5) for time after (2023-09-03 02:00:00)
14:09:55 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-03 01:00:00) in space (linearNDFast)
14:09:55 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:55 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-03 02:00:00) in space (linearNDFast)
14:09:55 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5016 elements, expanding data 1
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 2
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5016 elements, expanding data 1
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 2
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5126 elements, expanding data 1
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 469 elements, expanding data 2
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 3
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5126 elements, expanding data 1
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 469 elements, expanding data 2
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 3
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5126 elements, expanding data 1
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 469 elements, expanding data 2
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 3
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5126 elements, expanding data 1
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 469 elements, expanding data 2
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 3
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5126 elements, expanding data 1
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 469 elements, expanding data 2
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 3
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6389 elements, expanding data 1
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2982 elements, expanding data 2
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6389 elements, expanding data 1
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2982 elements, expanding data 2
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6389 elements, expanding data 1
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2982 elements, expanding data 2
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6389 elements, expanding data 1
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2982 elements, expanding data 2
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6389 elements, expanding data 1
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2982 elements, expanding data 2
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5016 elements, expanding data 1
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 2
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5016 elements, expanding data 1
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 2
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5016 elements, expanding data 1
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 2
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5016 elements, expanding data 1
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 2
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5016 elements, expanding data 1
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 2
14:09:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:55 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-03 01:00:00, weight 0.56) and
after (2023-09-03 02:00:00, weight 0.44) in time
14:09:55 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.12298687910997 and -58.95642050801722 degrees.
14:09:55 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.12298687910997 and -58.95642050801722 degrees.
14:09:55 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:55 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:55 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:55 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:55 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:55 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:55 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.674105 (min) 1.39961 (max)
14:09:55 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.912217 (min) 0.771313 (max)
14:09:55 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000148702 (min) 0.00076456 (max)
14:09:55 DEBUG opendrift.models.basemodel:1524: x_wind: -10.7328 (min) 7.43134 (max)
14:09:55 DEBUG opendrift.models.basemodel:1524: y_wind: -8.91036 (min) 6.78517 (max)
14:09:55 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:55 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:55 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:55 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:55 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:55 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:55 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:55 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4922 (max)
14:09:55 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:55 DEBUG opendrift.models.basemodel:1527: 7396 active elements
14:09:55 DEBUG opendrift.models.basemodel:1538: 59.09594553209885 <- latitude -> 59.19019465883555
14:09:55 DEBUG opendrift.models.basemodel:1543: 10.877023695208836 <- longitude -> 11.043590049805688
14:09:55 DEBUG opendrift.models.basemodel:1548: -14.861273994445801 <- z -> 0.0
14:09:55 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:55 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:55 DEBUG opendrift.models.physics_methods:1050: min: 0.011666, mean: 2.474851, max: 9.275584
14:09:55 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.011666, mean: 2.474851, max: 9.275584
14:09:55 DEBUG opendrift.models.basemodel:813: 1211 elements hit coastline, moving back to water
14:09:55 DEBUG opendrift.models.basemodel:836: Lifting 268 elements to seafloor.
14:09:55 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:55 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:55 DEBUG opendrift.models.physics_methods:828: Advecting 37 of 7396 elements above 0.100m with wind-sheared ocean current (0.006051 m/s - 0.108960 m/s)
14:09:55 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:55 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:55 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10646369052560806
14:09:55 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:55 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:55 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:55 DEBUG opendrift.models.oceandrift:582: 760 elements penetrated seafloor, lifting up
14:09:55 DEBUG opendrift.models.oceandrift:600: 134 elements reached seafloor, set to bottom
14:09:55 DEBUG opendrift.models.basemodel:836: Lifting 134 elements to seafloor.
14:09:55 DEBUG opendrift.models.sedimentdrift:112: Settling 134 elements at seafloor
14:09:55 DEBUG opendrift.models.oceandrift:582: 639 elements penetrated seafloor, lifting up
14:09:55 DEBUG opendrift.models.oceandrift:600: 130 elements reached seafloor, set to bottom
14:09:55 DEBUG opendrift.models.basemodel:836: Lifting 130 elements to seafloor.
14:09:55 DEBUG opendrift.models.sedimentdrift:112: Settling 130 elements at seafloor
14:09:55 DEBUG opendrift.models.oceandrift:582: 564 elements penetrated seafloor, lifting up
14:09:55 DEBUG opendrift.models.oceandrift:600: 101 elements reached seafloor, set to bottom
14:09:55 DEBUG opendrift.models.basemodel:836: Lifting 101 elements to seafloor.
14:09:55 DEBUG opendrift.models.sedimentdrift:112: Settling 101 elements at seafloor
14:09:55 DEBUG opendrift.models.oceandrift:582: 545 elements penetrated seafloor, lifting up
14:09:55 DEBUG opendrift.models.oceandrift:600: 111 elements reached seafloor, set to bottom
14:09:55 DEBUG opendrift.models.basemodel:836: Lifting 111 elements to seafloor.
14:09:55 DEBUG opendrift.models.sedimentdrift:112: Settling 111 elements at seafloor
14:09:55 DEBUG opendrift.models.oceandrift:582: 523 elements penetrated seafloor, lifting up
14:09:55 DEBUG opendrift.models.oceandrift:600: 96 elements reached seafloor, set to bottom
14:09:55 DEBUG opendrift.models.basemodel:836: Lifting 96 elements to seafloor.
14:09:55 DEBUG opendrift.models.sedimentdrift:112: Settling 96 elements at seafloor
14:09:55 DEBUG opendrift.models.oceandrift:582: 532 elements penetrated seafloor, lifting up
14:09:55 DEBUG opendrift.models.oceandrift:600: 83 elements reached seafloor, set to bottom
14:09:55 DEBUG opendrift.models.basemodel:836: Lifting 83 elements to seafloor.
14:09:55 DEBUG opendrift.models.sedimentdrift:112: Settling 83 elements at seafloor
14:09:55 DEBUG opendrift.models.oceandrift:582: 460 elements penetrated seafloor, lifting up
14:09:55 DEBUG opendrift.models.oceandrift:600: 80 elements reached seafloor, set to bottom
14:09:55 DEBUG opendrift.models.basemodel:836: Lifting 80 elements to seafloor.
14:09:55 DEBUG opendrift.models.sedimentdrift:112: Settling 80 elements at seafloor
14:09:55 DEBUG opendrift.models.oceandrift:582: 445 elements penetrated seafloor, lifting up
14:09:55 DEBUG opendrift.models.oceandrift:600: 90 elements reached seafloor, set to bottom
14:09:55 DEBUG opendrift.models.basemodel:836: Lifting 90 elements to seafloor.
14:09:55 DEBUG opendrift.models.sedimentdrift:112: Settling 90 elements at seafloor
14:09:55 DEBUG opendrift.models.oceandrift:582: 433 elements penetrated seafloor, lifting up
14:09:55 DEBUG opendrift.models.oceandrift:600: 80 elements reached seafloor, set to bottom
14:09:55 DEBUG opendrift.models.basemodel:836: Lifting 80 elements to seafloor.
14:09:55 DEBUG opendrift.models.sedimentdrift:112: Settling 80 elements at seafloor
14:09:55 DEBUG opendrift.models.oceandrift:582: 410 elements penetrated seafloor, lifting up
14:09:55 DEBUG opendrift.models.oceandrift:600: 76 elements reached seafloor, set to bottom
14:09:55 DEBUG opendrift.models.basemodel:836: Lifting 76 elements to seafloor.
14:09:55 DEBUG opendrift.models.sedimentdrift:112: Settling 76 elements at seafloor
14:09:55 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:55 DEBUG opendrift.models.basemodel:2945: 7396 active elements (0 deactivated)
14:09:55 DEBUG opendrift.models.basemodel:1658: to be seeded: 2604, already seeded 7396
14:09:55 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
14:09:55 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:55 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:55 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:55 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:55 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:55 DEBUG opendrift.models.basemodel:1253: Data needed for 7430 elements
14:09:55 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:55 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-03 01:00:00 (before)
2023-09-03 02:00:00 (after)
14:09:55 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-03 01:00:00) in space (linearNDFast)
14:09:55 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:55 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:55 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:55 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:55 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:55 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:55 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.543 (max)
14:09:55 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:55 DEBUG opendrift.models.basemodel:1527: 7430 active elements
14:09:55 DEBUG opendrift.models.basemodel:1538: 59.09699042491735 <- latitude -> 59.189897085631614
14:09:55 DEBUG opendrift.models.basemodel:1543: 10.87904348476379 <- longitude -> 11.052196327243783
14:09:55 DEBUG opendrift.models.basemodel:1548: -14.915176391601562 <- z -> 0.0
14:09:55 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:55 DEBUG opendrift.models.basemodel:836: Lifting 735 elements to seafloor.
14:09:55 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:55 INFO opendrift.models.basemodel:2882: 2023-09-03 01:36:21.121579 - step 214 of 216 - 7430 active elements (0 deactivated)
14:09:55 DEBUG opendrift.models.basemodel:2888: 2570 elements scheduled.
14:09:55 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:55 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:55 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:55 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:55 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:55 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:55 DEBUG opendrift.models.basemodel:1253: Data needed for 7430 elements
14:09:55 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:55 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:55 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:55 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:55 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:55 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:55 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:55 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:55 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:55 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:55 DEBUG opendrift.models.basemodel:1253: Data needed for 7430 elements
14:09:55 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:55 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-03 01:00:00 (before)
2023-09-03 02:00:00 (after)
14:09:56 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:56 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:56 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:56 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:56 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:56 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:56 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x28x5) for time after (2023-09-03 02:00:00)
14:09:56 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-03 01:00:00) in space (linearNDFast)
14:09:56 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:56 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-03 02:00:00) in space (linearNDFast)
14:09:56 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5013 elements, expanding data 1
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 134 elements, expanding data 2
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5013 elements, expanding data 1
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 134 elements, expanding data 2
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5117 elements, expanding data 1
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 463 elements, expanding data 2
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 123 elements, expanding data 3
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5117 elements, expanding data 1
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 463 elements, expanding data 2
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 123 elements, expanding data 3
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5117 elements, expanding data 1
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 463 elements, expanding data 2
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 123 elements, expanding data 3
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5117 elements, expanding data 1
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 463 elements, expanding data 2
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 123 elements, expanding data 3
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5117 elements, expanding data 1
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 463 elements, expanding data 2
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 123 elements, expanding data 3
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6426 elements, expanding data 1
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3010 elements, expanding data 2
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6426 elements, expanding data 1
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3010 elements, expanding data 2
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6426 elements, expanding data 1
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3010 elements, expanding data 2
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6426 elements, expanding data 1
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3010 elements, expanding data 2
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6426 elements, expanding data 1
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3010 elements, expanding data 2
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5013 elements, expanding data 1
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 134 elements, expanding data 2
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5013 elements, expanding data 1
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 134 elements, expanding data 2
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5013 elements, expanding data 1
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 134 elements, expanding data 2
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5013 elements, expanding data 1
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 134 elements, expanding data 2
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5013 elements, expanding data 1
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 134 elements, expanding data 2
14:09:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:09:56 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-03 01:00:00, weight 0.39) and
after (2023-09-03 02:00:00, weight 0.61) in time
14:09:56 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.1209670967417 and -58.94781424366085 degrees.
14:09:56 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.1209670967417 and -58.94781424366085 degrees.
14:09:56 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:56 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:56 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:56 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:56 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:56 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:56 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.768232 (min) 1.20627 (max)
14:09:56 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.999506 (min) 0.808945 (max)
14:09:56 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -6.90381e-05 (min) 0.000734674 (max)
14:09:56 DEBUG opendrift.models.basemodel:1524: x_wind: -8.30283 (min) 6.54375 (max)
14:09:56 DEBUG opendrift.models.basemodel:1524: y_wind: -8.97017 (min) 5.91991 (max)
14:09:56 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:56 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:56 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:56 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:56 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:56 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:56 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:56 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.543 (max)
14:09:56 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:56 DEBUG opendrift.models.basemodel:1527: 7430 active elements
14:09:56 DEBUG opendrift.models.basemodel:1538: 59.09699042491735 <- latitude -> 59.189897085631614
14:09:56 DEBUG opendrift.models.basemodel:1543: 10.87904348476379 <- longitude -> 11.052196327243783
14:09:56 DEBUG opendrift.models.basemodel:1548: -14.915176391601562 <- z -> 0.0
14:09:56 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:56 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:56 DEBUG opendrift.models.physics_methods:1050: min: 0.017820, mean: 2.438315, max: 7.774464
14:09:56 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.017820, mean: 2.438315, max: 7.774464
14:09:56 DEBUG opendrift.models.basemodel:813: 1232 elements hit coastline, moving back to water
14:09:56 DEBUG opendrift.models.basemodel:836: Lifting 259 elements to seafloor.
14:09:56 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:56 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:56 DEBUG opendrift.models.physics_methods:828: Advecting 37 of 7430 elements above 0.100m with wind-sheared ocean current (0.006341 m/s - 0.137703 m/s)
14:09:56 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:56 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:56 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07479403043706893
14:09:56 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:56 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:56 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:56 DEBUG opendrift.models.oceandrift:582: 817 elements penetrated seafloor, lifting up
14:09:56 DEBUG opendrift.models.oceandrift:600: 118 elements reached seafloor, set to bottom
14:09:56 DEBUG opendrift.models.basemodel:836: Lifting 118 elements to seafloor.
14:09:56 DEBUG opendrift.models.sedimentdrift:112: Settling 118 elements at seafloor
14:09:56 DEBUG opendrift.models.oceandrift:582: 710 elements penetrated seafloor, lifting up
14:09:56 DEBUG opendrift.models.oceandrift:600: 114 elements reached seafloor, set to bottom
14:09:56 DEBUG opendrift.models.basemodel:836: Lifting 114 elements to seafloor.
14:09:56 DEBUG opendrift.models.sedimentdrift:112: Settling 114 elements at seafloor
14:09:56 DEBUG opendrift.models.oceandrift:582: 569 elements penetrated seafloor, lifting up
14:09:56 DEBUG opendrift.models.oceandrift:600: 132 elements reached seafloor, set to bottom
14:09:56 DEBUG opendrift.models.basemodel:836: Lifting 132 elements to seafloor.
14:09:56 DEBUG opendrift.models.sedimentdrift:112: Settling 132 elements at seafloor
14:09:56 DEBUG opendrift.models.oceandrift:582: 519 elements penetrated seafloor, lifting up
14:09:56 DEBUG opendrift.models.oceandrift:600: 98 elements reached seafloor, set to bottom
14:09:56 DEBUG opendrift.models.basemodel:836: Lifting 98 elements to seafloor.
14:09:56 DEBUG opendrift.models.sedimentdrift:112: Settling 98 elements at seafloor
14:09:56 DEBUG opendrift.models.oceandrift:582: 516 elements penetrated seafloor, lifting up
14:09:56 DEBUG opendrift.models.oceandrift:600: 93 elements reached seafloor, set to bottom
14:09:56 DEBUG opendrift.models.basemodel:836: Lifting 93 elements to seafloor.
14:09:56 DEBUG opendrift.models.sedimentdrift:112: Settling 93 elements at seafloor
14:09:56 DEBUG opendrift.models.oceandrift:582: 502 elements penetrated seafloor, lifting up
14:09:56 DEBUG opendrift.models.oceandrift:600: 84 elements reached seafloor, set to bottom
14:09:56 DEBUG opendrift.models.basemodel:836: Lifting 84 elements to seafloor.
14:09:56 DEBUG opendrift.models.sedimentdrift:112: Settling 84 elements at seafloor
14:09:56 DEBUG opendrift.models.oceandrift:582: 482 elements penetrated seafloor, lifting up
14:09:56 DEBUG opendrift.models.oceandrift:600: 77 elements reached seafloor, set to bottom
14:09:56 DEBUG opendrift.models.basemodel:836: Lifting 77 elements to seafloor.
14:09:56 DEBUG opendrift.models.sedimentdrift:112: Settling 77 elements at seafloor
14:09:56 DEBUG opendrift.models.oceandrift:582: 480 elements penetrated seafloor, lifting up
14:09:56 DEBUG opendrift.models.oceandrift:600: 89 elements reached seafloor, set to bottom
14:09:56 DEBUG opendrift.models.basemodel:836: Lifting 89 elements to seafloor.
14:09:56 DEBUG opendrift.models.sedimentdrift:112: Settling 89 elements at seafloor
14:09:56 DEBUG opendrift.models.oceandrift:582: 460 elements penetrated seafloor, lifting up
14:09:56 DEBUG opendrift.models.oceandrift:600: 65 elements reached seafloor, set to bottom
14:09:56 DEBUG opendrift.models.basemodel:836: Lifting 65 elements to seafloor.
14:09:56 DEBUG opendrift.models.sedimentdrift:112: Settling 65 elements at seafloor
14:09:56 DEBUG opendrift.models.oceandrift:582: 444 elements penetrated seafloor, lifting up
14:09:56 DEBUG opendrift.models.oceandrift:600: 83 elements reached seafloor, set to bottom
14:09:56 DEBUG opendrift.models.basemodel:836: Lifting 83 elements to seafloor.
14:09:56 DEBUG opendrift.models.sedimentdrift:112: Settling 83 elements at seafloor
14:09:56 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:56 DEBUG opendrift.models.basemodel:2945: 7430 active elements (0 deactivated)
14:09:56 DEBUG opendrift.models.basemodel:1658: to be seeded: 2570, already seeded 7430
14:09:56 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:09:56 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:56 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:56 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:56 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:56 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:56 DEBUG opendrift.models.basemodel:1253: Data needed for 7465 elements
14:09:56 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:56 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-03 01:00:00 (before)
2023-09-03 02:00:00 (after)
14:09:56 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-03 01:00:00) in space (linearNDFast)
14:09:56 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:56 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:56 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:56 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:56 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:56 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:56 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4989 (max)
14:09:56 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:56 DEBUG opendrift.models.basemodel:1527: 7465 active elements
14:09:56 DEBUG opendrift.models.basemodel:1538: 59.0958128524863 <- latitude -> 59.18959767714371
14:09:56 DEBUG opendrift.models.basemodel:1543: 10.881477927197352 <- longitude -> 11.048876706614218
14:09:56 DEBUG opendrift.models.basemodel:1548: -14.915176391601562 <- z -> 0.0
14:09:56 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:56 DEBUG opendrift.models.basemodel:836: Lifting 651 elements to seafloor.
14:09:56 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:56 INFO opendrift.models.basemodel:2882: 2023-09-03 01:46:21.121579 - step 215 of 216 - 7465 active elements (0 deactivated)
14:09:56 DEBUG opendrift.models.basemodel:2888: 2535 elements scheduled.
14:09:56 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:56 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:56 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:56 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:56 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:56 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:56 DEBUG opendrift.models.basemodel:1253: Data needed for 7465 elements
14:09:56 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:56 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:56 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:56 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:56 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:56 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:56 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:56 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:56 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:56 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:56 DEBUG opendrift.models.basemodel:1253: Data needed for 7465 elements
14:09:56 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:56 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-03 01:00:00 (before)
2023-09-03 02:00:00 (after)
14:09:57 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:57 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:57 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:57 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:57 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:57 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:57 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x28x5) for time after (2023-09-03 02:00:00)
14:09:57 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-03 01:00:00) in space (linearNDFast)
14:09:57 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:57 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-03 02:00:00) in space (linearNDFast)
14:09:57 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5012 elements, expanding data 1
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 146 elements, expanding data 2
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5012 elements, expanding data 1
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 146 elements, expanding data 2
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5119 elements, expanding data 1
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 466 elements, expanding data 2
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 126 elements, expanding data 3
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5119 elements, expanding data 1
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 466 elements, expanding data 2
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 126 elements, expanding data 3
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5119 elements, expanding data 1
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 466 elements, expanding data 2
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 126 elements, expanding data 3
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5119 elements, expanding data 1
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 466 elements, expanding data 2
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 126 elements, expanding data 3
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5119 elements, expanding data 1
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 466 elements, expanding data 2
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 126 elements, expanding data 3
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6441 elements, expanding data 1
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2997 elements, expanding data 2
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6441 elements, expanding data 1
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2997 elements, expanding data 2
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6441 elements, expanding data 1
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2997 elements, expanding data 2
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6441 elements, expanding data 1
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2997 elements, expanding data 2
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6441 elements, expanding data 1
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2997 elements, expanding data 2
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5012 elements, expanding data 1
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 146 elements, expanding data 2
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5012 elements, expanding data 1
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 146 elements, expanding data 2
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5012 elements, expanding data 1
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 146 elements, expanding data 2
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5012 elements, expanding data 1
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 146 elements, expanding data 2
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5012 elements, expanding data 1
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 146 elements, expanding data 2
14:09:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
14:09:57 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-03 01:00:00, weight 0.23) and
after (2023-09-03 02:00:00, weight 0.77) in time
14:09:57 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.11853263591995 and -58.95113385684969 degrees.
14:09:57 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.11853263591995 and -58.95113385684969 degrees.
14:09:57 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:57 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:57 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:57 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:57 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:57 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:57 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.808563 (min) 1.34844 (max)
14:09:57 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.11565 (min) 0.785939 (max)
14:09:57 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -5.53395e-05 (min) 0.000703649 (max)
14:09:57 DEBUG opendrift.models.basemodel:1524: x_wind: -8.15454 (min) 6.03938 (max)
14:09:57 DEBUG opendrift.models.basemodel:1524: y_wind: -7.73459 (min) 5.94916 (max)
14:09:57 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:57 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:57 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:57 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:57 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:57 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:57 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:57 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4989 (max)
14:09:57 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:57 DEBUG opendrift.models.basemodel:1527: 7465 active elements
14:09:57 DEBUG opendrift.models.basemodel:1538: 59.0958128524863 <- latitude -> 59.18959767714371
14:09:57 DEBUG opendrift.models.basemodel:1543: 10.881477927197352 <- longitude -> 11.048876706614218
14:09:57 DEBUG opendrift.models.basemodel:1548: -14.915176391601562 <- z -> 0.0
14:09:57 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:57 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:57 DEBUG opendrift.models.physics_methods:1050: min: 0.030007, mean: 2.396316, max: 7.433397
14:09:57 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.030007, mean: 2.396316, max: 7.433397
14:09:57 DEBUG opendrift.models.basemodel:813: 1268 elements hit coastline, moving back to water
14:09:57 DEBUG opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
14:09:57 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:57 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:57 DEBUG opendrift.models.physics_methods:828: Advecting 37 of 7465 elements above 0.100m with wind-sheared ocean current (0.006664 m/s - 0.158302 m/s)
14:09:57 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:57 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:57 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.06837588317473411
14:09:57 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:57 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:57 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:57 DEBUG opendrift.models.oceandrift:582: 738 elements penetrated seafloor, lifting up
14:09:57 DEBUG opendrift.models.oceandrift:600: 125 elements reached seafloor, set to bottom
14:09:57 DEBUG opendrift.models.basemodel:836: Lifting 125 elements to seafloor.
14:09:57 DEBUG opendrift.models.sedimentdrift:112: Settling 125 elements at seafloor
14:09:57 DEBUG opendrift.models.oceandrift:582: 620 elements penetrated seafloor, lifting up
14:09:57 DEBUG opendrift.models.oceandrift:600: 115 elements reached seafloor, set to bottom
14:09:57 DEBUG opendrift.models.basemodel:836: Lifting 115 elements to seafloor.
14:09:57 DEBUG opendrift.models.sedimentdrift:112: Settling 115 elements at seafloor
14:09:57 DEBUG opendrift.models.oceandrift:582: 564 elements penetrated seafloor, lifting up
14:09:57 DEBUG opendrift.models.oceandrift:600: 112 elements reached seafloor, set to bottom
14:09:57 DEBUG opendrift.models.basemodel:836: Lifting 112 elements to seafloor.
14:09:57 DEBUG opendrift.models.sedimentdrift:112: Settling 112 elements at seafloor
14:09:57 DEBUG opendrift.models.oceandrift:582: 499 elements penetrated seafloor, lifting up
14:09:57 DEBUG opendrift.models.oceandrift:600: 94 elements reached seafloor, set to bottom
14:09:57 DEBUG opendrift.models.basemodel:836: Lifting 94 elements to seafloor.
14:09:57 DEBUG opendrift.models.sedimentdrift:112: Settling 94 elements at seafloor
14:09:57 DEBUG opendrift.models.oceandrift:582: 481 elements penetrated seafloor, lifting up
14:09:57 DEBUG opendrift.models.oceandrift:600: 84 elements reached seafloor, set to bottom
14:09:57 DEBUG opendrift.models.basemodel:836: Lifting 84 elements to seafloor.
14:09:57 DEBUG opendrift.models.sedimentdrift:112: Settling 84 elements at seafloor
14:09:57 DEBUG opendrift.models.oceandrift:582: 503 elements penetrated seafloor, lifting up
14:09:57 DEBUG opendrift.models.oceandrift:600: 104 elements reached seafloor, set to bottom
14:09:57 DEBUG opendrift.models.basemodel:836: Lifting 104 elements to seafloor.
14:09:57 DEBUG opendrift.models.sedimentdrift:112: Settling 104 elements at seafloor
14:09:57 DEBUG opendrift.models.oceandrift:582: 442 elements penetrated seafloor, lifting up
14:09:57 DEBUG opendrift.models.oceandrift:600: 100 elements reached seafloor, set to bottom
14:09:57 DEBUG opendrift.models.basemodel:836: Lifting 100 elements to seafloor.
14:09:57 DEBUG opendrift.models.sedimentdrift:112: Settling 100 elements at seafloor
14:09:57 DEBUG opendrift.models.oceandrift:582: 453 elements penetrated seafloor, lifting up
14:09:57 DEBUG opendrift.models.oceandrift:600: 77 elements reached seafloor, set to bottom
14:09:57 DEBUG opendrift.models.basemodel:836: Lifting 77 elements to seafloor.
14:09:57 DEBUG opendrift.models.sedimentdrift:112: Settling 77 elements at seafloor
14:09:57 DEBUG opendrift.models.oceandrift:582: 433 elements penetrated seafloor, lifting up
14:09:57 DEBUG opendrift.models.oceandrift:600: 78 elements reached seafloor, set to bottom
14:09:57 DEBUG opendrift.models.basemodel:836: Lifting 78 elements to seafloor.
14:09:57 DEBUG opendrift.models.sedimentdrift:112: Settling 78 elements at seafloor
14:09:57 DEBUG opendrift.models.oceandrift:582: 389 elements penetrated seafloor, lifting up
14:09:57 DEBUG opendrift.models.oceandrift:600: 72 elements reached seafloor, set to bottom
14:09:57 DEBUG opendrift.models.basemodel:836: Lifting 72 elements to seafloor.
14:09:57 DEBUG opendrift.models.sedimentdrift:112: Settling 72 elements at seafloor
14:09:57 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:57 DEBUG opendrift.models.basemodel:2945: 7465 active elements (0 deactivated)
14:09:57 DEBUG opendrift.models.basemodel:1658: to be seeded: 2535, already seeded 7465
14:09:57 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
14:09:57 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:57 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:09:57 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:57 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:57 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:57 DEBUG opendrift.models.basemodel:1253: Data needed for 7500 elements
14:09:57 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:57 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-03 01:00:00 (before)
2023-09-03 02:00:00 (after)
14:09:57 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-03 01:00:00) in space (linearNDFast)
14:09:57 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:57 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:09:57 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:57 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:57 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:57 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:57 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5392 (max)
14:09:57 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:57 DEBUG opendrift.models.basemodel:1527: 7500 active elements
14:09:57 DEBUG opendrift.models.basemodel:1538: 59.09560945556442 <- latitude -> 59.18952561598644
14:09:57 DEBUG opendrift.models.basemodel:1543: 10.880706623389374 <- longitude -> 11.052627728476033
14:09:57 DEBUG opendrift.models.basemodel:1548: -15.464201202392578 <- z -> 0.0
14:09:57 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:57 DEBUG opendrift.models.basemodel:836: Lifting 664 elements to seafloor.
14:09:57 DEBUG opendrift.models.basemodel:2881: ======================================================================
14:09:57 INFO opendrift.models.basemodel:2882: 2023-09-03 01:56:21.121579 - step 216 of 216 - 7500 active elements (0 deactivated)
14:09:57 DEBUG opendrift.models.basemodel:2888: 2500 elements scheduled.
14:09:57 DEBUG opendrift.models.basemodel:2890: ======================================================================
14:09:57 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:57 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:57 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:57 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:57 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:57 DEBUG opendrift.models.basemodel:1253: Data needed for 7500 elements
14:09:57 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:57 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:57 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:57 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:57 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:57 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:57 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:09:57 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:57 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:57 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:57 DEBUG opendrift.models.basemodel:1253: Data needed for 7500 elements
14:09:57 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:09:57 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-09-03 01:00:00 (before)
2023-09-03 02:00:00 (after)
14:09:58 DEBUG opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:09:58 DEBUG opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:09:58 DEBUG opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:09:58 DEBUG opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:09:58 DEBUG opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:09:58 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:09:58 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x28x6) for time after (2023-09-03 02:00:00)
14:09:58 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-09-03 01:00:00) in space (linearNDFast)
14:09:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:58 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-09-03 02:00:00) in space (linearNDFast)
14:09:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:09:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5031 elements, expanding data 1
14:09:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 140 elements, expanding data 2
14:09:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5031 elements, expanding data 1
14:09:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 140 elements, expanding data 2
14:09:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5139 elements, expanding data 1
14:09:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 476 elements, expanding data 2
14:09:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 123 elements, expanding data 3
14:09:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5139 elements, expanding data 1
14:09:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 476 elements, expanding data 2
14:09:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 123 elements, expanding data 3
14:09:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5139 elements, expanding data 1
14:09:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 476 elements, expanding data 2
14:09:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 123 elements, expanding data 3
14:09:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5139 elements, expanding data 1
14:09:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 476 elements, expanding data 2
14:09:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 123 elements, expanding data 3
14:09:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5139 elements, expanding data 1
14:09:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 476 elements, expanding data 2
14:09:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 123 elements, expanding data 3
14:09:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5139 elements, expanding data 1
14:09:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 476 elements, expanding data 2
14:09:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 123 elements, expanding data 3
14:09:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6469 elements, expanding data 1
14:09:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3006 elements, expanding data 2
14:09:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6469 elements, expanding data 1
14:09:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3006 elements, expanding data 2
14:09:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6469 elements, expanding data 1
14:09:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3006 elements, expanding data 2
14:09:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6469 elements, expanding data 1
14:09:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3006 elements, expanding data 2
14:09:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6469 elements, expanding data 1
14:09:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3006 elements, expanding data 2
14:09:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6469 elements, expanding data 1
14:09:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3006 elements, expanding data 2
14:09:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5031 elements, expanding data 1
14:09:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 140 elements, expanding data 2
14:09:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5031 elements, expanding data 1
14:09:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 140 elements, expanding data 2
14:09:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5031 elements, expanding data 1
14:09:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 140 elements, expanding data 2
14:09:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5031 elements, expanding data 1
14:09:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 140 elements, expanding data 2
14:09:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5031 elements, expanding data 1
14:09:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 140 elements, expanding data 2
14:09:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5031 elements, expanding data 1
14:09:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 140 elements, expanding data 2
14:09:58 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-09-03 01:00:00, weight 0.06) and
after (2023-09-03 02:00:00, weight 0.94) in time
14:09:58 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.119303956762785 and -58.9473828359099 degrees.
14:09:58 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.119303956762785 and -58.9473828359099 degrees.
14:09:58 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:58 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:58 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:58 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:09:58 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:09:58 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:58 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.705147 (min) 1.33817 (max)
14:09:58 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.11337 (min) 0.802395 (max)
14:09:58 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -3.47189e-05 (min) 0.000784643 (max)
14:09:58 DEBUG opendrift.models.basemodel:1524: x_wind: -8.01225 (min) 6.31757 (max)
14:09:58 DEBUG opendrift.models.basemodel:1524: y_wind: -8.41953 (min) 6.74194 (max)
14:09:58 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:09:58 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:09:58 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:09:58 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:09:58 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:58 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:09:58 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:09:58 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5392 (max)
14:09:58 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:58 DEBUG opendrift.models.basemodel:1527: 7500 active elements
14:09:58 DEBUG opendrift.models.basemodel:1538: 59.09560945556442 <- latitude -> 59.18952561598644
14:09:58 DEBUG opendrift.models.basemodel:1543: 10.880706623389374 <- longitude -> 11.052627728476033
14:09:58 DEBUG opendrift.models.basemodel:1548: -15.464201202392578 <- z -> 0.0
14:09:58 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:58 DEBUG opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:09:58 DEBUG opendrift.models.physics_methods:1050: min: 0.016904, mean: 2.357869, max: 7.360333
14:09:58 DEBUG opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.016904, mean: 2.357869, max: 7.360333
14:09:58 DEBUG opendrift.models.basemodel:813: 1250 elements hit coastline, moving back to water
14:09:58 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
14:09:58 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:58 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:09:58 DEBUG opendrift.models.physics_methods:828: Advecting 39 of 7500 elements above 0.100m with wind-sheared ocean current (0.004967 m/s - 0.121896 m/s)
14:09:58 DEBUG opendrift.models.physics_methods:846: No Stokes drift velocity available
14:09:58 DEBUG opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:09:58 DEBUG opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.0670384224911499
14:09:58 DEBUG opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:09:58 DEBUG opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:09:58 DEBUG opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:09:58 DEBUG opendrift.models.oceandrift:582: 800 elements penetrated seafloor, lifting up
14:09:58 DEBUG opendrift.models.oceandrift:600: 126 elements reached seafloor, set to bottom
14:09:58 DEBUG opendrift.models.basemodel:836: Lifting 126 elements to seafloor.
14:09:58 DEBUG opendrift.models.sedimentdrift:112: Settling 126 elements at seafloor
14:09:58 DEBUG opendrift.models.oceandrift:582: 590 elements penetrated seafloor, lifting up
14:09:58 DEBUG opendrift.models.oceandrift:600: 119 elements reached seafloor, set to bottom
14:09:58 DEBUG opendrift.models.basemodel:836: Lifting 119 elements to seafloor.
14:09:58 DEBUG opendrift.models.sedimentdrift:112: Settling 119 elements at seafloor
14:09:58 DEBUG opendrift.models.oceandrift:582: 551 elements penetrated seafloor, lifting up
14:09:58 DEBUG opendrift.models.oceandrift:600: 112 elements reached seafloor, set to bottom
14:09:58 DEBUG opendrift.models.basemodel:836: Lifting 112 elements to seafloor.
14:09:58 DEBUG opendrift.models.sedimentdrift:112: Settling 112 elements at seafloor
14:09:58 DEBUG opendrift.models.oceandrift:582: 480 elements penetrated seafloor, lifting up
14:09:58 DEBUG opendrift.models.oceandrift:600: 88 elements reached seafloor, set to bottom
14:09:58 DEBUG opendrift.models.basemodel:836: Lifting 88 elements to seafloor.
14:09:58 DEBUG opendrift.models.sedimentdrift:112: Settling 88 elements at seafloor
14:09:58 DEBUG opendrift.models.oceandrift:582: 507 elements penetrated seafloor, lifting up
14:09:58 DEBUG opendrift.models.oceandrift:600: 106 elements reached seafloor, set to bottom
14:09:58 DEBUG opendrift.models.basemodel:836: Lifting 106 elements to seafloor.
14:09:58 DEBUG opendrift.models.sedimentdrift:112: Settling 106 elements at seafloor
14:09:58 DEBUG opendrift.models.oceandrift:582: 517 elements penetrated seafloor, lifting up
14:09:58 DEBUG opendrift.models.oceandrift:600: 104 elements reached seafloor, set to bottom
14:09:58 DEBUG opendrift.models.basemodel:836: Lifting 104 elements to seafloor.
14:09:58 DEBUG opendrift.models.sedimentdrift:112: Settling 104 elements at seafloor
14:09:58 DEBUG opendrift.models.oceandrift:582: 409 elements penetrated seafloor, lifting up
14:09:58 DEBUG opendrift.models.oceandrift:600: 99 elements reached seafloor, set to bottom
14:09:58 DEBUG opendrift.models.basemodel:836: Lifting 99 elements to seafloor.
14:09:58 DEBUG opendrift.models.sedimentdrift:112: Settling 99 elements at seafloor
14:09:58 DEBUG opendrift.models.oceandrift:582: 424 elements penetrated seafloor, lifting up
14:09:58 DEBUG opendrift.models.oceandrift:600: 71 elements reached seafloor, set to bottom
14:09:58 DEBUG opendrift.models.basemodel:836: Lifting 71 elements to seafloor.
14:09:58 DEBUG opendrift.models.sedimentdrift:112: Settling 71 elements at seafloor
14:09:58 DEBUG opendrift.models.oceandrift:582: 425 elements penetrated seafloor, lifting up
14:09:58 DEBUG opendrift.models.oceandrift:600: 86 elements reached seafloor, set to bottom
14:09:58 DEBUG opendrift.models.basemodel:836: Lifting 86 elements to seafloor.
14:09:58 DEBUG opendrift.models.sedimentdrift:112: Settling 86 elements at seafloor
14:09:58 DEBUG opendrift.models.oceandrift:582: 436 elements penetrated seafloor, lifting up
14:09:58 DEBUG opendrift.models.oceandrift:600: 90 elements reached seafloor, set to bottom
14:09:58 DEBUG opendrift.models.basemodel:836: Lifting 90 elements to seafloor.
14:09:58 DEBUG opendrift.models.sedimentdrift:112: Settling 90 elements at seafloor
14:09:58 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:09:58 DEBUG opendrift.models.basemodel:2945: 7500 active elements (0 deactivated)
14:09:58 DEBUG opendrift.models.basemodel:2974: Cleaning up
14:09:58 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
14:09:58 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:09:58 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
14:09:58 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
14:09:58 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
14:09:58 DEBUG opendrift.models.basemodel:1253: Data needed for 7500 elements
14:09:58 DEBUG opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:09:58 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:09:58 DEBUG opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:09:58 DEBUG opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:09:58 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
14:09:58 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
14:09:58 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
14:09:58 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:09:58 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
14:09:58 DEBUG opendrift.models.basemodel:1526: ---------------------------------
14:09:58 DEBUG opendrift.models.basemodel:1527: 7500 active elements
14:09:58 DEBUG opendrift.models.basemodel:1538: 59.096970164062355 <- latitude -> 59.19046576831168
14:09:58 DEBUG opendrift.models.basemodel:1543: 10.879473904360543 <- longitude -> 11.05544515713479
14:09:58 DEBUG opendrift.models.basemodel:1548: -14.905176391601563 <- z -> -0.0702143088765228
14:09:58 DEBUG opendrift.models.basemodel:1549: ---------------------------------
14:09:58 DEBUG opendrift.models.basemodel:813: 1279 elements hit coastline, moving back to water
14:09:58 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
14:09:58 INFO opendrift.models.basemodel:3014: Removing 2500 unseeded elements from history array
Plotting the depth vs time
o.plot_property('z')

Animate sediment particles colored by their depth
o.animation(color='z', fast=False, buffer=.01)
#o.animation(color='moving', fast=False, buffer=.01, colorbar=False, legend=['Sedimented', 'Moving'])
14:10:06 DEBUG opendrift.models.basemodel:3180: Setting up map: corners=None, fast=False, lscale=None
14:10:06 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:11:36 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:11:38 DEBUG opendrift.models.basemodel:3855: Saving animation..
14:11:38 INFO opendrift.models.basemodel:5350: Saving animation to /root/project/docs/source/gallery/animations/example_sediments_0.gif...
14:11:38 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:11:40 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:11:42 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:11:43 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:11:45 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:11:47 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:11:49 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:11:51 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:11:52 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:11:54 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:11:56 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:11:58 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:12:00 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:12:01 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:12:03 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:12:05 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:12:07 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:12:08 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:12:10 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:12:12 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:12:14 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:12:15 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:12:17 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:12:19 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:12:21 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:12:23 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:12:25 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:12:27 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:12:30 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:12:32 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:12:34 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:12:36 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:12:38 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:12:39 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:12:41 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:12:43 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:12:45 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:12:46 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:12:48 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:12:49 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:12:51 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:12:53 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:12:55 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:12:56 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:12:58 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:13:00 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:13:01 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:13:03 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:13:05 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:13:06 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:13:08 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:13:09 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:13:11 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:13:13 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:13:14 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:13:16 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:13:18 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:13:19 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:13:21 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:13:22 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:13:24 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:13:25 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:13:27 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:13:29 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:13:31 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:13:32 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:13:34 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:13:35 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:13:37 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:13:39 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:13:41 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:13:42 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:13:44 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:13:46 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:13:48 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:13:49 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:13:51 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:13:53 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:13:55 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:13:57 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:13:58 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:14:00 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:14:02 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:14:03 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:14:05 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:14:07 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:14:09 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:14:10 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:14:12 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:14:13 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:14:15 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:14:17 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:14:19 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:14:21 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:14:23 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:14:24 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:14:26 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:14:27 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:14:29 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:14:31 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:14:32 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:14:34 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:14:36 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:14:37 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:14:39 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:14:41 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:14:42 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:14:44 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:14:46 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:14:47 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:14:49 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:14:50 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:14:52 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:14:54 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:14:56 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:14:57 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:14:59 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:15:01 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:15:02 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:15:04 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:15:06 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:15:07 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:15:09 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:15:11 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:15:13 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:15:14 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:15:16 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:15:18 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:15:20 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:15:21 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:15:23 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:15:24 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:15:26 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:15:28 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:15:30 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:15:31 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:15:33 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:15:35 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:15:37 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:15:39 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:15:41 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:15:42 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:15:44 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:15:46 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:15:48 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:15:49 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.855762939453127, 11.075444717407226, 59.08294128417969, 59.198705444335936)..
14:15:54 DEBUG opendrift.models.basemodel:5388: MPLBACKEND = agg
14:15:54 DEBUG opendrift.models.basemodel:5389: DISPLAY = None
14:15:54 DEBUG opendrift.models.basemodel:5390: Time to save animation: 0:04:15.696072
14:15:54 INFO opendrift.models.basemodel:3848: Time to make animation: 0:05:48.216583
Total running time of the script: (9 minutes 33.652 seconds)